annotate update/core-update.v1.2.3-v1.2.4.sql @ 436:34cc98defa8b
2 bugfixes: Error in core-update.v2.2.6-v3.0.1.sql fixed; Always set "initiative"."first_preference_votes" (also if no votes are found)
author |
jbe |
date |
Wed Jul 16 16:28:35 2014 +0200 (2014-07-16) |
parents |
bdccc56fb705 |
children |
|
rev |
line source |
jbe@65
|
1 BEGIN;
|
jbe@65
|
2
|
jbe@65
|
3 CREATE OR REPLACE VIEW "liquid_feedback_version" AS
|
jbe@65
|
4 SELECT * FROM (VALUES ('1.2.4', 1, 2, 4))
|
jbe@65
|
5 AS "subquery"("string", "major", "minor", "revision");
|
jbe@65
|
6
|
jbe@65
|
7 -- no changes in database scheme except version number
|
jbe@65
|
8
|
jbe@65
|
9 COMMIT;
|