liquid_feedback_core

changeset 445:fbb49f35b4e1 v3.0.5

Fixed error in demo.sql file (missing "polling" column in INSERT statement for "contingent" table)
author jbe
date Sat Jul 18 17:19:10 2015 +0200 (2015-07-18)
parents d14513809147
children 617d515558bd
files demo.sql
line diff
     1.1 --- a/demo.sql	Sat Jul 18 17:12:54 2015 +0200
     1.2 +++ b/demo.sql	Sat Jul 18 17:19:10 2015 +0200
     1.3 @@ -5,10 +5,13 @@
     1.4  
     1.5  INSERT INTO "system_setting" ("member_ttl") VALUES ('31 days');
     1.6  
     1.7 -INSERT INTO "contingent" ("time_frame", "text_entry_limit", "initiative_limit") VALUES
     1.8 -  ('60 minutes', 6, 1),
     1.9 -  ('1 day', 60, 10),
    1.10 -  ('1 week', 120, 20);
    1.11 +INSERT INTO "contingent" ("polling", "time_frame", "text_entry_limit", "initiative_limit") VALUES
    1.12 +  (FALSE, '60 minutes', 6, 1),
    1.13 +  (FALSE, '1 day', 60, 10),
    1.14 +  (FALSE, '1 week', 120, 20),
    1.15 +  (TRUE, '60 minutes', 6, 1),
    1.16 +  (TRUE, '1 day', 60, 10),
    1.17 +  (TRUE, '1 week', 120, 20);
    1.18  
    1.19  INSERT INTO "policy" (
    1.20      "index",

Impressum / About Us