NEW :
In order to get easier the installation and the upgrade of the database a new module webbased has been created, the old version of install.sh is now obsolete
This commit is contained in:
parent
29f5d52e33
commit
53234e02f3
32 changed files with 4798 additions and 0 deletions
30
html/admin/sql/account_repository/sequence.sql
Normal file
30
html/admin/sql/account_repository/sequence.sql
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
CREATE SEQUENCE users_id
|
||||
START 1
|
||||
INCREMENT 1
|
||||
MAXVALUE 9223372036854775807
|
||||
MINVALUE 1
|
||||
CACHE 1;
|
||||
CREATE SEQUENCE seq_jnt_use_dos
|
||||
START 1
|
||||
INCREMENT 1
|
||||
MAXVALUE 9223372036854775807
|
||||
MINVALUE 1
|
||||
CACHE 1;
|
||||
CREATE SEQUENCE seq_priv_user
|
||||
START 1
|
||||
INCREMENT 1
|
||||
MAXVALUE 9223372036854775807
|
||||
MINVALUE 1
|
||||
CACHE 1;
|
||||
CREATE SEQUENCE s_modid
|
||||
START 1
|
||||
INCREMENT 1
|
||||
MAXVALUE 9223372036854775807
|
||||
MINVALUE 1
|
||||
CACHE 1;
|
||||
CREATE SEQUENCE dossier_id
|
||||
START 3
|
||||
INCREMENT 1
|
||||
MAXVALUE 9223372036854775807
|
||||
MINVALUE 3
|
||||
CACHE 1;
|
||||
Loading…
Add table
Add a link
Reference in a new issue