|
@@ -77,7 +77,7 @@ SELECT * FROM users; --查询用户表的所有内容
|
|
user_id int not null COMMENT '用户id',
|
|
user_id int not null COMMENT '用户id',
|
|
folder_id int not null COMMENT '文件夹ID',
|
|
folder_id int not null COMMENT '文件夹ID',
|
|
file_type int not null COMMENT '文件类型',
|
|
file_type int not null COMMENT '文件类型',
|
|
- file_name varchar(30) not null COMMENT '文件名字',
|
|
|
|
|
|
+ file_name varchar(100) not null COMMENT '文件名字',
|
|
file_info JSON COMMENT '文件详情',
|
|
file_info JSON COMMENT '文件详情',
|
|
is_public int DEFAULT 0 COMMENT '是否公共资源',
|
|
is_public int DEFAULT 0 COMMENT '是否公共资源',
|
|
duration float DEFAULT 0 COMMENT '时长 单位秒,保留2位小数',
|
|
duration float DEFAULT 0 COMMENT '时长 单位秒,保留2位小数',
|
|
@@ -126,7 +126,7 @@ SELECT * FROM users; --查询用户表的所有内容
|
|
user_id int not null COMMENT '用户id',
|
|
user_id int not null COMMENT '用户id',
|
|
folder_id int not null COMMENT '文件夹ID',
|
|
folder_id int not null COMMENT '文件夹ID',
|
|
file_type int not null COMMENT '文件类型',
|
|
file_type int not null COMMENT '文件类型',
|
|
- file_name varchar(30) not null COMMENT '文件名字',
|
|
|
|
|
|
+ file_name varchar(100) not null COMMENT '文件名字',
|
|
file_info JSON COMMENT '文件详情',
|
|
file_info JSON COMMENT '文件详情',
|
|
duration float DEFAULT 0 COMMENT '时长 单位秒,保留2位小数',
|
|
duration float DEFAULT 0 COMMENT '时长 单位秒,保留2位小数',
|
|
create_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|
|
create_time TIMESTAMP DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
|