补充缺失的6张表对应的6个序列
补充缺失的6张表对应的6个序列: system_mail_account_seq system_mail_log_seq system_mail_template_seq system_notify_message_seq system_notify_template_seq system_user_session_seq Signed-off-by: libran <fang.jian@126.com>pull/2/head
parent
9c4e54a5ce
commit
0218f24b94
|
@ -530,6 +530,60 @@ INCREMENT 1
|
||||||
MAXVALUE 9223372036854775807
|
MAXVALUE 9223372036854775807
|
||||||
CACHE 1;
|
CACHE 1;
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- Sequence structure for system_mail_account_seq
|
||||||
|
-- ----------------------------
|
||||||
|
DROP SEQUENCE IF EXISTS "system_mail_account_seq";
|
||||||
|
CREATE SEQUENCE "system_mail_account_seq"
|
||||||
|
INCREMENT 1
|
||||||
|
MAXVALUE 9223372036854775807
|
||||||
|
CACHE 1;
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- Sequence structure for system_mail_log_seq
|
||||||
|
-- ----------------------------
|
||||||
|
DROP SEQUENCE IF EXISTS "system_mail_log_seq";
|
||||||
|
CREATE SEQUENCE "system_mail_log_seq"
|
||||||
|
INCREMENT 1
|
||||||
|
MAXVALUE 9223372036854775807
|
||||||
|
CACHE 1;
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- Sequence structure for system_mail_template_seq
|
||||||
|
-- ----------------------------
|
||||||
|
DROP SEQUENCE IF EXISTS "system_mail_template_seq";
|
||||||
|
CREATE SEQUENCE "system_mail_template_seq"
|
||||||
|
INCREMENT 1
|
||||||
|
MAXVALUE 9223372036854775807
|
||||||
|
CACHE 1;
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- Sequence structure for system_notify_message_seq
|
||||||
|
-- ----------------------------
|
||||||
|
DROP SEQUENCE IF EXISTS "system_notify_message_seq";
|
||||||
|
CREATE SEQUENCE "system_notify_message_seq"
|
||||||
|
INCREMENT 1
|
||||||
|
MAXVALUE 9223372036854775807
|
||||||
|
CACHE 1;
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- Sequence structure for system_notify_template_seq
|
||||||
|
-- ----------------------------
|
||||||
|
DROP SEQUENCE IF EXISTS "system_notify_template_seq";
|
||||||
|
CREATE SEQUENCE "system_notify_template_seq"
|
||||||
|
INCREMENT 1
|
||||||
|
MAXVALUE 9223372036854775807
|
||||||
|
CACHE 1;
|
||||||
|
|
||||||
|
-- ----------------------------
|
||||||
|
-- Sequence structure for system_user_session_seq
|
||||||
|
-- ----------------------------
|
||||||
|
DROP SEQUENCE IF EXISTS "system_user_session_seq";
|
||||||
|
CREATE SEQUENCE "system_user_session_seq"
|
||||||
|
INCREMENT 1
|
||||||
|
MAXVALUE 9223372036854775807
|
||||||
|
CACHE 1;
|
||||||
|
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
-- Table structure for bpm_form
|
-- Table structure for bpm_form
|
||||||
-- ----------------------------
|
-- ----------------------------
|
||||||
|
|
Loading…
Reference in New Issue