Delete large files

This commit is contained in:
JiaJu Zhuang
2023-06-23 18:18:26 +08:00
parent e4466fb34d
commit e7c521cf8d
3 changed files with 31 additions and 0 deletions

24
document/sql/mysql.sql Normal file
View File

@ -0,0 +1,24 @@
create table goods
(
id int unsigned primary key auto_increment commentid,
category_id int unsigned not null default 0 commentid,
spu_id int unsigned not null default 0 commentSPU id,
sn varchar(20) not null default comment,
name varchar(120) not null default comment,
keyword varchar(255) not null default comment,
picture varchar(255) not null default comment,
tips varchar(255) not null default comment,
description varchar(255) not null default comment,
content text not null comment,
price decimal(10, 2) unsigned not null default 0 comment ,
stock int unsigned not null default 0 comment ,
score decimal(3, 2) unsigned not null default 0 comment,
is_on_sale tinyint unsigned not null default 0 comment,
is_del tinyint unsigned not null default 0 comment,
is_free_shipping tinyint unsigned not null default 0 comment,
sell_count int unsigned not null default 0 comment,
comment int unsigned not null default 0 comment,
on_sale_time datetime default null comment,
create_time datetime not null default current_timestamp comment,
update_time datetime default null comment
);