create table configuration
(
id int unsigned auto_increment comment '主键'
primary key,
site_id int default 0 not null comment '站点id',
create_time int default 0 not null comment '添加时间',
update_time int default 0 not null comment '更新时间',
delete_time int default 0 not null comment '删除时间',
is_del tinyint unsigned default '0' not null
)
comment '联盟配置表' row_format = DYNAMIC;