# HG changeset patch # User jbe # Date 1437232750 -7200 # Node ID fbb49f35b4e12d1c78671319565bca2cb88d4b2f # Parent d14513809147f0405b3f5cd41ca543f5e2e07968 Fixed error in demo.sql file (missing "polling" column in INSERT statement for "contingent" table) diff -r d14513809147 -r fbb49f35b4e1 demo.sql --- a/demo.sql Sat Jul 18 17:12:54 2015 +0200 +++ b/demo.sql Sat Jul 18 17:19:10 2015 +0200 @@ -5,10 +5,13 @@ INSERT INTO "system_setting" ("member_ttl") VALUES ('31 days'); -INSERT INTO "contingent" ("time_frame", "text_entry_limit", "initiative_limit") VALUES - ('60 minutes', 6, 1), - ('1 day', 60, 10), - ('1 week', 120, 20); +INSERT INTO "contingent" ("polling", "time_frame", "text_entry_limit", "initiative_limit") VALUES + (FALSE, '60 minutes', 6, 1), + (FALSE, '1 day', 60, 10), + (FALSE, '1 week', 120, 20), + (TRUE, '60 minutes', 6, 1), + (TRUE, '1 day', 60, 10), + (TRUE, '1 week', 120, 20); INSERT INTO "policy" ( "index",