新建数据库必备字段


发布于 2025-02-24 / 13 阅读 / 0 评论 /
create table configuration ( id int unsigned auto_increment comment '主键' primary key, site_id int default 0
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;



是否对你有帮助?

评论