changeset 27:021ec7010271

make the inclusions work
author David A. Holland
date Sun, 26 May 2013 22:11:04 -0400
parents b296ea10b8f5
children 000519947282
files TODO database/primary-init.sql database/schema.sql
diffstat 3 files changed, 12 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/TODO	Sun May 26 22:04:04 2013 -0400
+++ b/TODO	Sun May 26 22:11:04 2013 -0400
@@ -1,3 +1,5 @@
+There is no permissions setup for the SQL schema.
+
 Does not currently install any of the SQL files.
 
 None of the scripts actually exist yet.
--- a/database/primary-init.sql	Sun May 26 22:04:04 2013 -0400
+++ b/database/primary-init.sql	Sun May 26 22:11:04 2013 -0400
@@ -1,5 +1,5 @@
 -- Primary database initialization.
 -- Needs to be done as database superuser.
 
-\i init/database.sql
-\i init/users.sql
+\ir init/database.sql
+\ir init/users.sql
--- a/database/schema.sql	Sun May 26 22:04:04 2013 -0400
+++ b/database/schema.sql	Sun May 26 22:11:04 2013 -0400
@@ -3,18 +3,18 @@
 
 begin;
 
-\i schema/version.sql
-\i schema/config.sql
+\ir schema/version.sql
+\ir schema/config.sql
 
-\i schema/users.sql
+\ir schema/users.sql
 
-\i schema/bugs.sql
-\i schema/messages.sql
-\i schema/subscription.sql
+\ir schema/bugs.sql
+\ir schema/messages.sql
+\ir schema/subscription.sql
 
-\i schema/classify.sql
+\ir schema/classify.sql
 
-\i schema/logs.sql
+\ir schema/logs.sql
 
 commit;