liquid_feedback_core
diff init.sql @ 110:575559c319e9
Merged v1.3.1 with unit extension
| author | jbe |
|---|---|
| date | Mon Feb 07 17:48:31 2011 +0100 (2011-02-07) |
| parents | 58451b5565ae |
| children | 6fce4f08157b |
line diff
1.1 --- a/init.sql Sat Feb 05 20:04:00 2011 +0100 1.2 +++ b/init.sql Mon Feb 07 17:48:31 2011 +0100 1.3 @@ -2,6 +2,17 @@ 1.4 1.5 BEGIN; 1.6 1.7 +INSERT INTO "unit" ( 1.8 + "active", 1.9 + "name", 1.10 + "description" 1.11 + ) VALUES ( 1.12 + true, 1.13 + 'Default unit', 1.14 + 'Default unit created by init script.' 1.15 + ); 1.16 + 1.17 + 1.18 INSERT INTO "member" ( 1.19 "login", 1.20 "password", 1.21 @@ -63,10 +74,12 @@ 1.22 1, 100 ); 1.23 1.24 INSERT INTO "area" ( 1.25 + "unit_id", 1.26 "active", 1.27 "name", 1.28 "description" 1.29 ) VALUES ( 1.30 + 1, 1.31 TRUE, 1.32 'Generic area', 1.33 DEFAULT );