MySQL Create Table SQL
Table Structure: okayapi_opms_pms_groups_user:/tablelist/okayapi_opms_pms_groups_user.html
-- MySQL Table okayapi_opms_pms_groups_user
-- From: OkayAPI.com
CREATE TABLE `okayapi_opms_pms_groups_user` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`groupid` bigint(20) NULL COMMENT '',
`userid` bigint(20) NULL COMMENT '',
KEY `groupid` (`groupid`),
KEY `userid` (`userid`),
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-2 of 2 results.
Field Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
groupid | bigint(20) | 是 | ||||
userid | bigint(20) | 是 |