migrate/1729221328_create_table_dma_process.up.sql
2024-10-18 11:15:58 +08:00

9 lines
387 B
SQL

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流程图';