Files
Dylan 7afd8415cd Add support for snowflake ID primary key (#670)
* fix: 修复PostgreSQL SQL语法错误,将反引号替换为双引号

* feat: 新增雪花算法ID实现

* 优化雪花算法和主键类型

* 修复错误引用

* 添加雪花详情链接

* feat: add snowflake ID parser method

* 修复独立执行异常

* 更新系统时间错误类
2025-06-16 13:34:27 +08:00

909 lines
25 KiB
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

create table sys_data_rule
(
id bigserial,
name varchar(500) not null,
model varchar(50) not null,
"column" varchar(20) not null,
operator integer not null,
expression integer not null,
value varchar(255) not null,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_data_rule is '数据规则表';
comment on column sys_data_rule.id is '主键 ID';
comment on column sys_data_rule.name is '名称';
comment on column sys_data_rule.model is 'SQLA 模型名,对应 DATA_PERMISSION_MODELS 键名';
comment on column sys_data_rule."column" is '模型字段名';
comment on column sys_data_rule.operator is '运算符0and、1or';
comment on column sys_data_rule.expression is '表达式0==、1!=、2>、3>=、4<、5<=、6in、7not_in';
comment on column sys_data_rule.value is '规则值';
comment on column sys_data_rule.created_time is '创建时间';
comment on column sys_data_rule.updated_time is '更新时间';
alter table sys_data_rule
owner to postgres;
create unique index sys_data_rule_pkey
on sys_data_rule (id);
create unique index sys_data_rule_name_key
on sys_data_rule (name);
create unique index ix_sys_data_rule_id
on sys_data_rule (id);
create table sys_data_scope
(
id bigserial,
name varchar(50) not null,
status integer not null,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_data_scope is '数据范围表';
comment on column sys_data_scope.id is '主键 ID';
comment on column sys_data_scope.name is '名称';
comment on column sys_data_scope.status is '状态0停用 1正常';
comment on column sys_data_scope.created_time is '创建时间';
comment on column sys_data_scope.updated_time is '更新时间';
alter table sys_data_scope
owner to postgres;
create unique index sys_data_scope_pkey
on sys_data_scope (id);
create unique index sys_data_scope_name_key
on sys_data_scope (name);
create unique index ix_sys_data_scope_id
on sys_data_scope (id);
create table sys_dept
(
id bigserial,
name varchar(50) not null,
sort integer not null,
leader varchar(20),
phone varchar(11),
email varchar(50),
status integer not null,
del_flag integer not null,
parent_id bigint
references ??? ()
on delete set null,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key ()
);
comment on table sys_dept is '部门表';
comment on column sys_dept.id is '主键 ID';
comment on column sys_dept.name is '部门名称';
comment on column sys_dept.sort is '排序';
comment on column sys_dept.leader is '负责人';
comment on column sys_dept.phone is '手机';
comment on column sys_dept.email is '邮箱';
comment on column sys_dept.status is '部门状态(0停用 1正常)';
comment on column sys_dept.del_flag is '删除标志0删除 1存在';
comment on column sys_dept.parent_id is '父部门ID';
comment on column sys_dept.created_time is '创建时间';
comment on column sys_dept.updated_time is '更新时间';
alter table sys_dept
owner to postgres;
create unique index sys_dept_pkey
on sys_dept (id);
create unique index ix_sys_dept_id
on sys_dept (id);
create index ix_sys_dept_parent_id
on sys_dept (parent_id);
create table sys_login_log
(
id bigint not null,
user_uuid varchar(50) not null,
username varchar(20) not null,
status integer not null,
ip varchar(50) not null,
country varchar(50),
region varchar(50),
city varchar(50),
user_agent varchar(255) not null,
os varchar(50),
browser varchar(50),
device varchar(50),
msg text not null,
login_time timestamp with time zone not null,
created_time timestamp with time zone not null,
primary key ()
);
comment on table sys_login_log is '登录日志表';
comment on column sys_login_log.id is '雪花算法主键 ID';
comment on column sys_login_log.user_uuid is '用户UUID';
comment on column sys_login_log.username is '用户名';
comment on column sys_login_log.status is '登录状态(0失败 1成功)';
comment on column sys_login_log.ip is '登录IP地址';
comment on column sys_login_log.country is '国家';
comment on column sys_login_log.region is '地区';
comment on column sys_login_log.city is '城市';
comment on column sys_login_log.user_agent is '请求头';
comment on column sys_login_log.os is '操作系统';
comment on column sys_login_log.browser is '浏览器';
comment on column sys_login_log.device is '设备';
comment on column sys_login_log.msg is '提示消息';
comment on column sys_login_log.login_time is '登录时间';
comment on column sys_login_log.created_time is '创建时间';
alter table sys_login_log
owner to postgres;
create unique index sys_login_log_pkey
on sys_login_log (id);
create unique index ix_sys_login_log_id
on sys_login_log (id);
create table sys_menu
(
id bigserial,
title varchar(50) not null,
name varchar(50) not null,
path varchar(200),
sort integer not null,
icon varchar(100),
type integer not null,
component varchar(255),
perms varchar(100),
status integer not null,
display integer not null,
cache integer not null,
link text,
remark text,
parent_id bigint
references ??? ()
on delete set null,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key ()
);
comment on table sys_menu is '菜单表';
comment on column sys_menu.id is '主键 ID';
comment on column sys_menu.title is '菜单标题';
comment on column sys_menu.name is '菜单名称';
comment on column sys_menu.path is '路由地址';
comment on column sys_menu.sort is '排序';
comment on column sys_menu.icon is '菜单图标';
comment on column sys_menu.type is '菜单类型0目录 1菜单 2按钮 3内嵌 4外链';
comment on column sys_menu.component is '组件路径';
comment on column sys_menu.perms is '权限标识';
comment on column sys_menu.status is '菜单状态0停用 1正常';
comment on column sys_menu.display is '是否显示0否 1是';
comment on column sys_menu.cache is '是否缓存0否 1是';
comment on column sys_menu.link is '外链地址';
comment on column sys_menu.remark is '备注';
comment on column sys_menu.parent_id is '父菜单ID';
comment on column sys_menu.created_time is '创建时间';
comment on column sys_menu.updated_time is '更新时间';
alter table sys_menu
owner to postgres;
create unique index sys_menu_pkey
on sys_menu (id);
create index ix_sys_menu_parent_id
on sys_menu (parent_id);
create unique index ix_sys_menu_id
on sys_menu (id);
create table sys_opera_log
(
id bigserial,
trace_id varchar(32) not null,
username varchar(20),
method varchar(20) not null,
title varchar(255) not null,
path varchar(500) not null,
ip varchar(50) not null,
country varchar(50),
region varchar(50),
city varchar(50),
user_agent varchar(255) not null,
os varchar(50),
browser varchar(50),
device varchar(50),
args json,
status integer not null,
code varchar(20) not null,
msg text,
cost_time double precision not null,
opera_time timestamp with time zone not null,
created_time timestamp with time zone not null,
primary key ()
);
comment on table sys_opera_log is '操作日志表';
comment on column sys_opera_log.id is '主键 ID';
comment on column sys_opera_log.trace_id is '请求跟踪 ID';
comment on column sys_opera_log.username is '用户名';
comment on column sys_opera_log.method is '请求类型';
comment on column sys_opera_log.title is '操作模块';
comment on column sys_opera_log.path is '请求路径';
comment on column sys_opera_log.ip is 'IP地址';
comment on column sys_opera_log.country is '国家';
comment on column sys_opera_log.region is '地区';
comment on column sys_opera_log.city is '城市';
comment on column sys_opera_log.user_agent is '请求头';
comment on column sys_opera_log.os is '操作系统';
comment on column sys_opera_log.browser is '浏览器';
comment on column sys_opera_log.device is '设备';
comment on column sys_opera_log.args is '请求参数';
comment on column sys_opera_log.status is '操作状态0异常 1正常';
comment on column sys_opera_log.code is '操作状态码';
comment on column sys_opera_log.msg is '提示消息';
comment on column sys_opera_log.cost_time is '请求耗时ms';
comment on column sys_opera_log.opera_time is '操作时间';
comment on column sys_opera_log.created_time is '创建时间';
alter table sys_opera_log
owner to postgres;
create unique index sys_opera_log_pkey
on sys_opera_log (id);
create unique index ix_sys_opera_log_id
on sys_opera_log (id);
create table sys_role
(
id bigserial,
name varchar(20) not null,
status integer not null,
is_filter_scopes integer not null,
remark text,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_role is '角色表';
comment on column sys_role.id is '主键 ID';
comment on column sys_role.name is '角色名称';
comment on column sys_role.status is '角色状态0停用 1正常';
comment on column sys_role.is_filter_scopes is '过滤数据权限(0否 1是)';
comment on column sys_role.remark is '备注';
comment on column sys_role.created_time is '创建时间';
comment on column sys_role.updated_time is '更新时间';
alter table sys_role
owner to postgres;
create unique index sys_role_pkey
on sys_role (id);
create unique index sys_role_name_key
on sys_role (name);
create unique index ix_sys_role_id
on sys_role (id);
create table sys_config
(
id bigserial,
name varchar(20) not null,
type varchar(20),
key varchar(50) not null,
value text not null,
is_frontend integer not null,
remark text,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_config is '参数配置表';
comment on column sys_config.id is '主键 ID';
comment on column sys_config.name is '名称';
comment on column sys_config.type is '类型';
comment on column sys_config.key is '键名';
comment on column sys_config.value is '键值';
comment on column sys_config.is_frontend is '是否前端';
comment on column sys_config.remark is '备注';
comment on column sys_config.created_time is '创建时间';
comment on column sys_config.updated_time is '更新时间';
alter table sys_config
owner to postgres;
create unique index sys_config_pkey
on sys_config (id);
create unique index sys_config_key_key
on sys_config (key);
create unique index ix_sys_config_id
on sys_config (id);
create table sys_dict_type
(
id bigserial,
name varchar(32) not null,
code varchar(32) not null,
status integer not null,
remark text,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_dict_type is '字典类型表';
comment on column sys_dict_type.id is '主键 ID';
comment on column sys_dict_type.name is '字典类型名称';
comment on column sys_dict_type.code is '字典类型编码';
comment on column sys_dict_type.status is '状态0停用 1正常';
comment on column sys_dict_type.remark is '备注';
comment on column sys_dict_type.created_time is '创建时间';
comment on column sys_dict_type.updated_time is '更新时间';
alter table sys_dict_type
owner to postgres;
create unique index sys_dict_type_pkey
on sys_dict_type (id);
create unique index sys_dict_type_code_key
on sys_dict_type (code);
create unique index ix_sys_dict_type_id
on sys_dict_type (id);
create table sys_notice
(
id bigserial,
title varchar(50) not null,
type integer not null,
author varchar(16) not null,
source varchar(50) not null,
status integer not null,
content text not null,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key ()
);
comment on table sys_notice is '系统通知公告表';
comment on column sys_notice.id is '主键 ID';
comment on column sys_notice.title is '标题';
comment on column sys_notice.type is '类型0通知、1公告';
comment on column sys_notice.author is '作者';
comment on column sys_notice.source is '信息来源';
comment on column sys_notice.status is '状态0隐藏、1显示';
comment on column sys_notice.content is '内容';
comment on column sys_notice.created_time is '创建时间';
comment on column sys_notice.updated_time is '更新时间';
alter table sys_notice
owner to postgres;
create unique index sys_notice_pkey
on sys_notice (id);
create unique index ix_sys_notice_id
on sys_notice (id);
create table gen_business
(
id bigserial,
app_name varchar(50) not null,
table_name varchar(255) not null,
doc_comment varchar(255) not null,
table_comment varchar(255),
class_name varchar(50),
schema_name varchar(50),
filename varchar(50),
default_datetime_column boolean not null,
api_version varchar(20) not null,
gen_path varchar(255),
remark text,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table gen_business is '代码生成业务表';
comment on column gen_business.id is '主键 ID';
comment on column gen_business.app_name is '应用名称(英文)';
comment on column gen_business.table_name is '表名称(英文)';
comment on column gen_business.doc_comment is '文档注释(用于函数/参数文档)';
comment on column gen_business.table_comment is '表描述';
comment on column gen_business.class_name is '基础类名(默认为英文表名称)';
comment on column gen_business.schema_name is 'Schema 名称 (默认为英文表名称)';
comment on column gen_business.filename is '基础文件名(默认为英文表名称)';
comment on column gen_business.default_datetime_column is '是否存在默认时间列';
comment on column gen_business.api_version is '代码生成 api 版本,默认为 v1';
comment on column gen_business.gen_path is '代码生成路径(默认为 app 根路径)';
comment on column gen_business.remark is '备注';
comment on column gen_business.created_time is '创建时间';
comment on column gen_business.updated_time is '更新时间';
alter table gen_business
owner to postgres;
create unique index gen_business_pkey
on gen_business (id);
create unique index gen_business_table_name_key
on gen_business (table_name);
create unique index ix_gen_business_id
on gen_business (id);
create table sys_role_menu
(
id bigserial,
role_id bigint not null
references ??? ()
on delete cascade,
menu_id bigint not null
references ??? ()
on delete cascade,
primary key ()
);
comment on column sys_role_menu.id is '主键ID';
comment on column sys_role_menu.role_id is '角色ID';
comment on column sys_role_menu.menu_id is '菜单ID';
alter table sys_role_menu
owner to postgres;
create unique index sys_role_menu_pkey
on sys_role_menu (id, role_id, menu_id);
create unique index ix_sys_role_menu_id
on sys_role_menu (id);
create table sys_role_data_scope
(
id bigserial,
role_id bigint not null
references ??? ()
on delete cascade,
data_scope_id bigint not null
references ??? ()
on delete cascade,
primary key ()
);
comment on column sys_role_data_scope.id is '主键 ID';
comment on column sys_role_data_scope.role_id is '角色 ID';
comment on column sys_role_data_scope.data_scope_id is '数据范围 ID';
alter table sys_role_data_scope
owner to postgres;
create unique index sys_role_data_scope_pkey
on sys_role_data_scope (id, role_id, data_scope_id);
create unique index ix_sys_role_data_scope_id
on sys_role_data_scope (id);
create table sys_data_scope_rule
(
id bigserial,
data_scope_id bigint not null
references ??? ()
on delete cascade,
data_rule_id bigint not null
references ??? ()
on delete cascade,
primary key ()
);
comment on column sys_data_scope_rule.id is '主键ID';
comment on column sys_data_scope_rule.data_scope_id is '数据范围 ID';
comment on column sys_data_scope_rule.data_rule_id is '数据规则 ID';
alter table sys_data_scope_rule
owner to postgres;
create unique index sys_data_scope_rule_pkey
on sys_data_scope_rule (id, data_scope_id, data_rule_id);
create unique index ix_sys_data_scope_rule_id
on sys_data_scope_rule (id);
create table sys_user
(
id bigserial,
uuid varchar(50) not null,
username varchar(20) not null,
nickname varchar(20) not null,
password varchar(255) not null,
salt bytea not null,
email varchar(50),
phone varchar(11),
avatar varchar(255),
status integer not null,
is_superuser integer not null,
is_staff integer not null,
is_multi_login integer not null,
join_time timestamp with time zone not null,
last_login_time timestamp with time zone,
dept_id bigint
references ??? ()
on delete set null,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_user is '用户表';
comment on column sys_user.id is '主键 ID';
comment on column sys_user.username is '用户名';
comment on column sys_user.nickname is '昵称';
comment on column sys_user.password is '密码';
comment on column sys_user.salt is '加密盐';
comment on column sys_user.email is '邮箱';
comment on column sys_user.phone is '手机号';
comment on column sys_user.avatar is '头像';
comment on column sys_user.status is '用户账号状态(0停用 1正常)';
comment on column sys_user.is_superuser is '超级权限(0否 1是)';
comment on column sys_user.is_staff is '后台管理登陆(0否 1是)';
comment on column sys_user.is_multi_login is '是否重复登陆(0否 1是)';
comment on column sys_user.join_time is '注册时间';
comment on column sys_user.last_login_time is '上次登录';
comment on column sys_user.dept_id is '部门关联ID';
comment on column sys_user.created_time is '创建时间';
comment on column sys_user.updated_time is '更新时间';
alter table sys_user
owner to postgres;
create unique index sys_user_pkey
on sys_user (id);
create unique index sys_user_uuid_key
on sys_user (uuid);
create unique index ix_sys_user_email
on sys_user (email);
create unique index ix_sys_user_username
on sys_user (username);
create unique index ix_sys_user_id
on sys_user (id);
create index ix_sys_user_status
on sys_user (status);
create table sys_dict_data
(
id bigserial,
label varchar(32) not null,
value varchar(32) not null,
sort integer not null,
status integer not null,
remark text,
type_id bigint not null
references ??? ()
on delete cascade,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key (),
unique ()
);
comment on table sys_dict_data is '字典数据表';
comment on column sys_dict_data.id is '主键 ID';
comment on column sys_dict_data.label is '字典标签';
comment on column sys_dict_data.value is '字典值';
comment on column sys_dict_data.sort is '排序';
comment on column sys_dict_data.status is '状态0停用 1正常';
comment on column sys_dict_data.remark is '备注';
comment on column sys_dict_data.type_id is '字典类型关联ID';
comment on column sys_dict_data.created_time is '创建时间';
comment on column sys_dict_data.updated_time is '更新时间';
alter table sys_dict_data
owner to postgres;
create unique index sys_dict_data_pkey
on sys_dict_data (id);
create unique index sys_dict_data_label_key
on sys_dict_data (label);
create unique index ix_sys_dict_data_id
on sys_dict_data (id);
create table gen_column
(
id bigserial,
name varchar(50) not null,
comment varchar(255),
type varchar(20) not null,
pd_type varchar(20) not null,
"default" text,
sort integer,
length integer not null,
is_pk boolean not null,
is_nullable boolean not null,
gen_business_id bigint not null
references ??? ()
on delete cascade,
primary key ()
);
comment on table gen_column is '代码生成模型列表';
comment on column gen_column.id is '主键 ID';
comment on column gen_column.name is '列名称';
comment on column gen_column.comment is '列描述';
comment on column gen_column.type is 'SQLA 模型列类型';
comment on column gen_column.pd_type is '列类型对应的 pydantic 类型';
comment on column gen_column."default" is '列默认值';
comment on column gen_column.sort is '列排序';
comment on column gen_column.length is '列长度';
comment on column gen_column.is_pk is '是否主键';
comment on column gen_column.is_nullable is '是否可为空';
comment on column gen_column.gen_business_id is '代码生成业务ID';
alter table gen_column
owner to postgres;
create unique index gen_column_pkey
on gen_column (id);
create unique index ix_gen_column_id
on gen_column (id);
create table sys_user_role
(
id bigserial,
user_id bigint not null
references ??? ()
on delete cascade,
role_id bigint not null
references ??? ()
on delete cascade,
primary key ()
);
comment on column sys_user_role.id is '主键ID';
comment on column sys_user_role.user_id is '用户ID';
comment on column sys_user_role.role_id is '角色ID';
alter table sys_user_role
owner to postgres;
create unique index sys_user_role_pkey
on sys_user_role (id, user_id, role_id);
create unique index ix_sys_user_role_id
on sys_user_role (id);
create table sys_user_social
(
id bigserial,
sid varchar(20) not null,
source varchar(20) not null,
user_id bigint not null
references ??? ()
on delete cascade,
created_time timestamp with time zone not null,
updated_time timestamp with time zone,
primary key ()
);
comment on table sys_user_social is '用户社交表OAuth2';
comment on column sys_user_social.id is '主键 ID';
comment on column sys_user_social.sid is '第三方用户 ID';
comment on column sys_user_social.source is '第三方用户来源';
comment on column sys_user_social.user_id is '用户关联ID';
comment on column sys_user_social.created_time is '创建时间';
comment on column sys_user_social.updated_time is '更新时间';
alter table sys_user_social
owner to postgres;
create unique index sys_user_social_pkey
on sys_user_social (id);
create unique index ix_sys_user_social_id
on sys_user_social (id);