创建dma流程表
This commit is contained in:
parent
b3a16689dd
commit
ebe78ce9d3
9
1729221328_create_table_dma_process.up.sql
Normal file
9
1729221328_create_table_dma_process.up.sql
Normal file
@ -0,0 +1,9 @@
|
||||
CREATE TABLE `ufutx_dma_process` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`user_id` int(11) NOT NULL COMMENT '用户id',
|
||||
`content` text COMMENT '流程内容',
|
||||
`created_at` timestamp NULL DEFAULT NULL,
|
||||
`updated_at` timestamp NULL DEFAULT NULL,
|
||||
PRIMARY KEY (`id`),
|
||||
KEY `user_id` (`user_id`) USING BTREE
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='dma流程图';
|
Loading…
Reference in New Issue
Block a user