+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_admin_log:/tablelist/okayapi_fl_admin_log.html


-- MySQL Table okayapi_fl_admin_log
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_admin_log` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `content` varchar(250) NOT NULL COMMENT '操作内容',
    `ip` varchar(15) NOT NULL DEFAULT '0' COMMENT 'IP',
    `route` varchar(60) NOT NULL COMMENT '路由',
    `http_method` varchar(10) NOT NULL COMMENT '请求方式',
    `admin_name` varchar(60) NOT NULL COMMENT '管理员名称',
    `admin_id` int(10) NOT NULL DEFAULT '0' COMMENT '管理员ID',
    KEY `content` (`content`),
    KEY `ip` (`ip`),
    KEY `route` (`route`),
    KEY `http_method` (`http_method`),
    KEY `admin_name` (`admin_name`),
    KEY `admin_id` (`admin_id`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMS建站系统-管理员日志表';

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
contentvarchar(250)操作内容
ipvarchar(15)0IP0
routevarchar(60)路由
http_methodvarchar(10)请求方式
admin_namevarchar(60)管理员名称
admin_idint(10)0管理员ID0

Guess You Like

MySQL Table Design okayapi_kite_addons

MySQL Table Design okayapi_kite_auth_role

MySQL Table Design okayapi_kite_auth_rule

MySQL Table Design okayapi_kite_auth_user

MySQL Table Design okayapi_kite_block

MySQL Table Design okayapi_kite_document_category

MySQL Table Design okayapi_kite_document_comments

MySQL Table Design okayapi_kite_document_comments_like

MySQL Table Design okayapi_kite_document_content

MySQL Table Design okayapi_kite_document_content_extra

MySQL Table Design okayapi_kite_document_content_like

MySQL Table Design okayapi_kite_document_field

MySQL Table Design okayapi_kite_document_model

MySQL Table Design okayapi_kite_document_model_field

MySQL Table Design okayapi_kite_feedback

MySQL Table Design okayapi_kite_hooks

MySQL Table Design okayapi_kite_language

MySQL Table Design okayapi_kite_link

MySQL Table Design okayapi_kite_log

MySQL Table Design okayapi_kite_message

TOP ↑