liquid_feedback_core

diff init.sql @ 100:994dd8ff5ad1

Merged addition of new field "locked" into branch containing (organizational) units
author jbe
date Tue Jan 04 02:18:20 2011 +0100 (2011-01-04)
parents 58451b5565ae
children 6fce4f08157b
line diff
     1.1 --- a/init.sql	Tue Jan 04 02:15:22 2011 +0100
     1.2 +++ b/init.sql	Tue Jan 04 02:18:20 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 );

Impressum / About Us