+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_dberp_operlog:/tablelist/okayapi_dberp_operlog.html


-- MySQL Table okayapi_dberp_operlog
-- From: OkayAPI.com
CREATE TABLE `okayapi_dberp_operlog` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `log_oper_user` varchar(100) NULL COMMENT '',
    `log_oper_user_group` varchar(100) NULL COMMENT '',
    `log_time` int(10) NULL COMMENT '',
    `log_ip` varchar(50) NULL COMMENT '',
    `log_body` varchar(2000) NULL COMMENT '',
    KEY `log_oper_user` (`log_oper_user`),
    KEY `log_oper_user_group` (`log_oper_user_group`),
    KEY `log_time` (`log_time`),
    KEY `log_ip` (`log_ip`),
    KEY `log_body` (`log_body`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'DBErp进销存-操作记录';

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
log_oper_uservarchar(100)
log_oper_user_groupvarchar(100)
log_timeint(10)
log_ipvarchar(50)
log_bodyvarchar(2000)

Guess You Like

MySQL Table Design okayapi_smpss_admin

MySQL Table Design okayapi_smpss_category

MySQL Table Design okayapi_smpss_goods

MySQL Table Design okayapi_smpss_group

MySQL Table Design okayapi_smpss_log

MySQL Table Design okayapi_smpss_mbgroup

MySQL Table Design okayapi_smpss_member

MySQL Table Design okayapi_smpss_purchase

MySQL Table Design okayapi_smpss_region

MySQL Table Design okayapi_smpss_sales

MySQL Table Design okayapi_smpss_system

MySQL Table Design okayapi_smpss_tempsales

MySQL Table Design okayapi_dberp_accounts_receivable

MySQL Table Design okayapi_dberp_accounts_receivable_log

MySQL Table Design okayapi_dberp_admin

MySQL Table Design okayapi_dberp_admin_group

MySQL Table Design okayapi_dberp_app

MySQL Table Design okayapi_dberp_brand

MySQL Table Design okayapi_dberp_customer

MySQL Table Design okayapi_dberp_customer_category

TOP ↑