11 lines
278 B
MySQL
11 lines
278 B
MySQL
|
-- auto-generated definition
|
||
|
create table cgy_record
|
||
|
(
|
||
|
id int not null
|
||
|
primary key,
|
||
|
browse_count int null comment '浏览次数',
|
||
|
download_count int null comment '百度网盘链接打开次数'
|
||
|
)
|
||
|
comment '成都工业项目使用记录';
|
||
|
|