+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_landi_system_reminder:/tablelist/okayapi_landi_system_reminder.html


-- MySQL Table okayapi_landi_system_reminder
-- From: OkayAPI.com
CREATE TABLE `okayapi_landi_system_reminder` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `user_id` int(11) NULL COMMENT '',
    `title` varchar(200) NULL COMMENT '',
    `content` varchar(500) NULL COMMENT '',
    `remind_date` date NULL COMMENT '',
    `state` varchar(10) NULL COMMENT '完成、未完成',
    KEY `user_id` (`user_id`),
    KEY `title` (`title`),
    KEY `content` (`content`),
    KEY `remind_date` (`remind_date`),
    KEY `state` (`state`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'LD酒店租房管理-系统提醒';

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
user_idint(11)
titlevarchar(200)
contentvarchar(500)
remind_datedate
statevarchar(10)完成、未完成

Guess You Like

MySQL Table Design okayapi_landi_agent_purchase

MySQL Table Design okayapi_landi_contract_income

MySQL Table Design okayapi_landi_cost_le

MySQL Table Design okayapi_landi_daily_service

MySQL Table Design okayapi_landi_diary_reminder

MySQL Table Design okayapi_landi_drinking_water

MySQL Table Design okayapi_landi_emergency_problem

MySQL Table Design okayapi_landi_fac_sta

MySQL Table Design okayapi_landi_flight_picking

MySQL Table Design okayapi_landi_grocery_item

MySQL Table Design okayapi_landi_grocery_running

MySQL Table Design okayapi_landi_guest

MySQL Table Design okayapi_landi_guest_balance

MySQL Table Design okayapi_landi_guest_service

MySQL Table Design okayapi_landi_host

MySQL Table Design okayapi_landi_income

MySQL Table Design okayapi_landi_intern

MySQL Table Design okayapi_landi_invoice

MySQL Table Design okayapi_landi_invoice_detail

MySQL Table Design okayapi_landi_laundry

TOP ↑