收貨地址表
收貨地址表
建表語句:
CREATE TABLE `address` (
`id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主鍵自增',
`userId` int(11) NOT NULL DEFAULT '0' COMMENT '使用者ID',
`provinceId` int(11) NOT NULL DEFAULT '0' COMMENT '省ID',
`cityId` int(11) NOT NULL DEFAULT '0' COMMENT '城市ID',
`districtId` int(11) NOT NULL DEFAULT '0' COMMENT '區ID',
`name` varchar(50) NOT NULL DEFAULT '' COMMENT '收貨人姓名',
`tag` enum('家','公司','學校') NOT NULL DEFAULT '家' COMMENT '標籤 不能為空',
`mobile` varchar(50) NOT NULL DEFAULT '' COMMENT '手機號',
`remark` varchar(255) NOT NULL DEFAULT '' COMMENT '詳細地址(最少5個字元)',
`isDefault` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否是預設地址 1是 0否 預設否',
`createTime` int(10) NOT NULL DEFAULT '0' COMMENT '建立時間',
`updateTime` int(10) NOT NULL DEFAULT '0' COMMENT '更新時間',
`createUser` int(11) NOT NULL DEFAULT '0' COMMENT '建立人',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;