-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPROJECT_Sequences.txt
103 lines (85 loc) · 1.35 KB
/
PROJECT_Sequences.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
CREATE SEQUENCE rest_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE order_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE type_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE req_type_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE location_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE user_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE item_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE admin_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE auth_id_seq
increment by 1
start with 1
maxvalue 10000
nocycle;
CREATE SEQUENCE bm_id_seq
increment by 1
start with 1
maxvalue 1000000
nocycle;
CREATE SEQUENCE baa_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE ra_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE rb_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE uaa_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE ubr_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE umr_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;
CREATE SEQUENCE aaa_id_seq
increment by 1
start with 1
maxvalue 100000
nocycle;