Skip to main content

2025-12/七牛oss

· One min read

2010-11-11 11:11:11

sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
create table oss_qiniu_bucket(
id int unisigned not null auto_increment,
bucket_name varchar(50) not null default '' comment '存储仓库名称',
domain varchar(50) not null default '' comment '绑定域名',
region varchar(50) not null default 'z0' comment '存储区域,默认z0',
`is_public` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否公开空间(0-私有,1-公开)',
`is_enabled` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否启用(0-禁用,1-启用)',
create_unixtime int unisigned not null default 0 comment '',
create_datetime varchar(19) not null default '' comment '',
primary key(id)
)engine=innodb charset=utf8;
create table oss_qiniu(
);