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 Name | Field Type | Default | IS NULL | Field Comment | Index | Demo Data |
---|---|---|---|---|---|---|
session_key | varchar(40) | 否 | ||||
session_data | longtext | 否 | ||||
expire_date | datetime(6) | 否 | Normal Index |