comparison database/schema.sql @ 27:021ec7010271

make the inclusions work
author David A. Holland
date Sun, 26 May 2013 22:11:04 -0400
parents 8870309149f8
children 000519947282
comparison
equal deleted inserted replaced
26:b296ea10b8f5 27:021ec7010271
1 -- Load the database schema. 1 -- Load the database schema.
2 -- Should be done as the swallowtail-admin user. 2 -- Should be done as the swallowtail-admin user.
3 3
4 begin; 4 begin;
5 5
6 \i schema/version.sql 6 \ir schema/version.sql
7 \i schema/config.sql 7 \ir schema/config.sql
8 8
9 \i schema/users.sql 9 \ir schema/users.sql
10 10
11 \i schema/bugs.sql 11 \ir schema/bugs.sql
12 \i schema/messages.sql 12 \ir schema/messages.sql
13 \i schema/subscription.sql 13 \ir schema/subscription.sql
14 14
15 \i schema/classify.sql 15 \ir schema/classify.sql
16 16
17 \i schema/logs.sql 17 \ir schema/logs.sql
18 18
19 commit; 19 commit;
20 20
21 21
22 22