We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 970ea9a commit 5359f57Copy full SHA for 5359f57
pg-identity-func-trig-seq2.sql
@@ -1,5 +1,26 @@
1
SET search_path TO common_oltp;
2
3
+CREATE INDEX IF NOT EXISTS email_address_idx ON common_oltp.email
4
+ (
5
+ address
6
+ );
7
+
8
+CREATE INDEX IF NOT EXISTS user_activ_code_idx ON common_oltp.user
9
10
+ activation_code
11
12
13
+CREATE INDEX IF NOT EXISTS user_open_id_idx ON common_oltp.user
14
15
+ open_id
16
17
18
+CREATE INDEX IF NOT EXISTS user_status_idx ON common_oltp.user
19
20
+ status
21
22
23
24
CREATE TABLE sync_test_id
25
(
26
uniqid INTEGER NOT NULL,
0 commit comments