quick reply
This commit is contained in:
parent
b3d592b779
commit
3c7c2f8440
8
1746606994_create_quick_reply_cate.up.sql
Normal file
8
1746606994_create_quick_reply_cate.up.sql
Normal file
@ -0,0 +1,8 @@
|
||||
CREATE TABLE `ufutx_quick_reply_cate` (
|
||||
`id` BIGINT NOT NULL AUTO_INCREMENT ,
|
||||
`user_id` int NOT NULL COMMENT "用户id",
|
||||
`name` varchar(50) NOT NULL COMMENT "名称",
|
||||
`created_at` TIMESTAMP NULL DEFAULT NULL ,
|
||||
`updated_at` TIMESTAMP NULL DEFAULT NULL ,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE = InnoDB COMMENT = '快捷回复分类';
|
2
1746607196_table_quick_reply_add_cate_id.up.sql
Normal file
2
1746607196_table_quick_reply_add_cate_id.up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE `ufutx_quick_reply`
|
||||
ADD COLUMN `cate_id` int DEFAULT 0 COMMENT "分类id" after `user_id`
|
2
1746611626_table_quick_reply_change_type.up.sql
Normal file
2
1746611626_table_quick_reply_change_type.up.sql
Normal file
@ -0,0 +1,2 @@
|
||||
ALTER TABLE `ufutx_quick_reply`
|
||||
MODIFY `type` ENUM('PERSONAL', 'DAILY', 'CUSTOM');
|
Loading…
Reference in New Issue
Block a user