feat/task1-c-wallet
devil_gong 2019-04-18 11:12:53 +08:00
parent d4895a6068
commit 95d5c3fca9
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@ CREATE TABLE `s_plugins_petscms_pets` (
`birthday` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '出生日期',
`type` char(60) NOT NULL DEFAULT '' COMMENT '类型',
`varieties` char(60) NOT NULL DEFAULT '' COMMENT '品种',
`gender` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '性别0公, 1母',
`sterilization` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否绝育0否, 1是',
`vaccine` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否疫苗0否, 1是',
`gender` tinyint(2) NOT NULL DEFAULT '-1' COMMENT '性别0公, 1母',
`sterilization` tinyint(2) NOT NULL DEFAULT '-1' COMMENT '是否绝育0否, 1是',
`vaccine` tinyint(2) NOT NULL DEFAULT '-1' COMMENT '是否疫苗0否, 1是',
`photo` mediumtext NOT NULL COMMENT '相册json数据',
`content` mediumtext NOT NULL COMMENT '宠物简介',
`person_name` char(30) NOT NULL DEFAULT '' COMMENT '主人姓名',