MySQL Create Table SQL
Table Structure: okayapi_opms_pms_albums_laud:/tablelist/okayapi_opms_pms_albums_laud.html
-- MySQL Table okayapi_opms_pms_albums_laud
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_albums_laud` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`userid` bigint(20) NULL COMMENT '',
`albumid` bigint(20) NULL COMMENT '',
`created` int(10) NULL COMMENT '',
`okayapi_opms_pms_albums_laud_status` tinyint(1) NULL DEFAULT '1' COMMENT '1正常2屏蔽',
KEY `userid` (`userid`),
KEY `albumid` (`albumid`),
KEY `created` (`created`),
KEY `okayapi_opms_pms_albums_laud_status` (`okayapi_opms_pms_albums_laud_status`),
PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'OPMS和OA管理-相册点赞表';
After replication, you can go to the database to create the database table.
MySQL database table structure design
Displaying 1-4 of 4 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
userid | bigint(20) | 是 | Normal Index | |||
albumid | bigint(20) | 是 | ||||
created | int(10) | 是 | ||||
okayapi_opms_pms_albums_laud_status | tinyint(1) | 1 | 是 | 1正常2屏蔽 | 1 |