+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_fl_sysconfig:/tablelist/okayapi_fl_sysconfig.html


-- MySQL Table okayapi_fl_sysconfig
-- From: OkayAPI.com
CREATE TABLE `okayapi_fl_sysconfig` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `varname` varchar(100) NOT NULL COMMENT '变量名',
    `info` varchar(100) NOT NULL COMMENT '变量值',
    `value` mediumtext NOT NULL COMMENT '变量说明',
    KEY `varname` (`varname`),
    KEY `info` (`info`),
    KEY `value` (`value`),
    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-3 of 3 results.
Field NameField TypeDefaultIS NULLField CommentIndexDemo Data
varnamevarchar(100)变量名
infovarchar(100)变量值
valuemediumtext变量说明

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 ↑