数据库初始化SQL文件

This commit is contained in:
BBIT-Kai
2025-05-12 13:57:45 +08:00
parent 965141def2
commit 488ae0053a
7 changed files with 456 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
CREATE SEQUENCE ai_profiles_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
CREATE SEQUENCE chat_records_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
CREATE SEQUENCE image_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
CREATE SEQUENCE users_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;