8 lines
418 B
MySQL
8 lines
418 B
MySQL
|
|
-- create table gpt_folder (
|
||
|
|
-- id bigint auto_increment comment '主键' ,
|
||
|
|
-- folder_name varchar(300) not null comment '文件夹名称',
|
||
|
|
-- primary key (id)
|
||
|
|
-- ) engine=innodb charset = utf8 comment = '文件夹信息表';
|
||
|
|
-- commit;
|
||
|
|
|
||
|
|
delete from chat_gpt.gpt_chat_message;
|