+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_eduwind_ew_notice:/tablelist/okayapi_eduwind_ew_notice.html


-- MySQL Table okayapi_eduwind_ew_notice
-- From: OkayAPI.com
CREATE TABLE `okayapi_eduwind_ew_notice` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `userId` int(11) NOT NULL COMMENT '用户id',
    `okayapi_eduwind_ew_notice_data` varchar(1024) NOT NULL COMMENT '数据',
    `okayapi_eduwind_ew_notice_type` char(255) NOT NULL COMMENT '通知类型',
    `addTime` int(11) NOT NULL DEFAULT '0' COMMENT '添加时间',
    `isChecked` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否已读,1已读,0未读',
    `isMailed` tinyint(1) NOT NULL DEFAULT '0' COMMENT '',
    KEY `userId` (`userId`),
    KEY `okayapi_eduwind_ew_notice_data` (`okayapi_eduwind_ew_notice_data`),
    KEY `okayapi_eduwind_ew_notice_type` (`okayapi_eduwind_ew_notice_type`),
    KEY `addTime` (`addTime`),
    KEY `isChecked` (`isChecked`),
    KEY `isMailed` (`isMailed`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'EW在线教育-提醒和通知';

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


MySQL database table structure design

Displaying 1-6 of 6 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
userIdint(11)用户idNormal Index
okayapi_eduwind_ew_notice_datavarchar(1024)数据
okayapi_eduwind_ew_notice_typechar(255)通知类型
addTimeint(11)0添加时间0
isCheckedtinyint(1)0是否已读,1已读,0未读0
isMailedtinyint(1)00

Guess You Like

MySQL Table Design okayapi_course_apply

MySQL Table Design okayapi_studyabc_articles

MySQL Table Design okayapi_studyabc_articles_content

MySQL Table Design okayapi_studyabc_cet

MySQL Table Design okayapi_studyabc_cetdesc

MySQL Table Design okayapi_studyabc_tinyenglish

MySQL Table Design okayapi_eduwind_AuthAssignment

MySQL Table Design okayapi_eduwind_AuthItem

MySQL Table Design okayapi_eduwind_AuthItemChild

MySQL Table Design okayapi_eduwind_Rights

MySQL Table Design okayapi_eduwind_YiiSession

MySQL Table Design okayapi_eduwind_ew_announcement

MySQL Table Design okayapi_eduwind_ew_answer

MySQL Table Design okayapi_eduwind_ew_area

MySQL Table Design okayapi_eduwind_ew_article

MySQL Table Design okayapi_eduwind_ew_bottom_text

MySQL Table Design okayapi_eduwind_ew_carousel

MySQL Table Design okayapi_eduwind_ew_category

MySQL Table Design okayapi_eduwind_ew_chapter

MySQL Table Design okayapi_eduwind_ew_city

TOP ↑