+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_sys_notice_manage:/tablelist/okayapi_sys_notice_manage.html


-- MySQL Table okayapi_sys_notice_manage
-- From: OkayAPI.com
CREATE TABLE `okayapi_sys_notice_manage` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `manager_id` int(10) NOT NULL COMMENT '管理员id',
    `notify_id` int(10) NOT NULL DEFAULT '0' COMMENT '消息id',
    `is_read` tinyint(2) NOT NULL DEFAULT '0' COMMENT '是否已读 1已读',
    `type` tinyint(1) NOT NULL DEFAULT '0' COMMENT '消息类型[1:公告;2:提醒;3:信息(私信)',
    `status` tinyint(4) NOT NULL DEFAULT '1' COMMENT '状态[-1:删除;0:禁用;1启用]',
    KEY `manager_id` (`manager_id`),
    KEY `notify_id` (`notify_id`),
    KEY `is_read` (`is_read`),
    KEY `type` (`type`),
    KEY `status` (`status`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT '消息查看时间记录表';

After replication, you can go to the database to create the database table.


MySQL database table structure design

Displaying 1-5 of 5 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
manager_idint(10)管理员id
notify_idint(10)0消息id0
is_readtinyint(2)0是否已读 1已读0
typetinyint(1)0消息类型[1:公告;2:提醒;3:信息(私信)0
statustinyint(4)1状态[-1:删除;0:禁用;1启用]1

Guess You Like

MySQL Table Design okayapi_file_uploads

MySQL Table Design okayapi_framework_log

MySQL Table Design okayapi_provinces_log

MySQL Table Design okayapi_sms_log

MySQL Table Design okayapi_member_datas_log

MySQL Table Design okayapi_member_vip

MySQL Table Design okayapi_sys_message

MySQL Table Design okayapi_sys_menu_manage

MySQL Table Design okayapi_sys_config_manage

MySQL Table Design okayapi_sys_addon_manage

MySQL Table Design okayapi_server_manage

TOP ↑