+ Use This Table All Design

MySQL Create Table SQL

Table Structure: okayapi_cmdb_django_session:/tablelist/okayapi_cmdb_django_session.html


-- MySQL Table okayapi_cmdb_django_session
-- From: OkayAPI.com
CREATE TABLE `okayapi_cmdb_django_session` (
    `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
    `session_key` varchar(40) NOT NULL COMMENT '',
    `session_data` longtext NOT NULL COMMENT '',
    `expire_date` datetime(6) NOT NULL COMMENT '',
    KEY `session_key` (`session_key`),
    KEY `session_data` (`session_data`),
    KEY `expire_date` (`expire_date`),
    PRIMARY KEY (`id`)
) ENGINE=InnoDB COMMENT 'CMDB管理-会话';

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
session_keyvarchar(40)
session_datalongtext
expire_datedatetime(6)Normal Index

Guess You Like

MySQL Table Design okayapi_cmdb_auth_group

MySQL Table Design okayapi_cmdb_auth_group_permissions

MySQL Table Design okayapi_cmdb_auth_permission

MySQL Table Design okayapi_cmdb_c_test_person

MySQL Table Design okayapi_cmdb_django_admin_log

MySQL Table Design okayapi_cmdb_django_content_type

MySQL Table Design okayapi_cmdb_django_migrations

MySQL Table Design okayapi_cmdb_mgmt_department

MySQL Table Design okayapi_cmdb_mgmt_department_permissions

MySQL Table Design okayapi_cmdb_mgmt_field

MySQL Table Design okayapi_cmdb_mgmt_permission

MySQL Table Design okayapi_cmdb_mgmt_restpwverifycode

MySQL Table Design okayapi_cmdb_mgmt_table

MySQL Table Design okayapi_cmdb_mgmt_user

MySQL Table Design okayapi_cmdb_mgmt_user_departments

MySQL Table Design okayapi_cmdb_mgmt_user_groups

MySQL Table Design okayapi_cmdb_mgmt_user_permissions

MySQL Table Design okayapi_cmdb_mgmt_user_user_permissions

TOP ↑