Skip to content

Commit 5359f57

Browse files
[skip ci]
[skip ci]
1 parent 970ea9a commit 5359f57

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

pg-identity-func-trig-seq2.sql

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
SET search_path TO common_oltp;
22

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+
324
CREATE TABLE sync_test_id
425
(
526
uniqid INTEGER NOT NULL,

0 commit comments

Comments
 (0)