6 lines
376 B
MySQL
6 lines
376 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;
|