问题答案表
This commit is contained in:
parent
866bd2aaa5
commit
f6bb234ab9
10
1723449768_create_table_question.up.sql
Normal file
10
1723449768_create_table_question.up.sql
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
CREATE TABLE `ufutx_question`
|
||||||
|
(
|
||||||
|
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||||
|
`title` varchar(255) DEFAULT NULL COMMENT '问题',
|
||||||
|
`content` text COMMENT '答案',
|
||||||
|
`created_at` timestamp NULL DEFAULT NULL,
|
||||||
|
`updated_at` timestamp NULL DEFAULT NULL,
|
||||||
|
PRIMARY KEY (`id`),
|
||||||
|
KEY `title` (`title`(191)) USING BTREE
|
||||||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='问题解答表';
|
Loading…
Reference in New Issue
Block a user