liquid_feedback_core

annotate update/core-update.v1.2.8-v1.2.9.sql @ 84:b0866d51b754

Backed out changesets dfa8e6a1f1e7, ca13b2614d10, and partly 0758a2e02620

- auto_support feature shall be added but implemented in a different way
- Delegating to non-active members shall be possible in database
- Incoming delegations MUST NOT be deleted when calling "delete_member"
- Index on "initiative"("issue_id") is not neccessary due to UNIQUE ("issue_id", "id") statement
author jbe
date Sat Oct 16 23:56:35 2010 +0200 (2010-10-16)
parents dfa8e6a1f1e7
children 1a412ec5e14e
rev   line source
poelzi@79 1 BEGIN;
poelzi@79 2
poelzi@79 3 CREATE OR REPLACE VIEW "liquid_feedback_version" AS
poelzi@79 4 SELECT * FROM (VALUES ('1.2.9', 1, 2, 9))
poelzi@79 5 AS "subquery"("string", "major", "minor", "revision");
poelzi@79 6
jbe@84 7 ALTER TABLE "supporter" ADD COLUMN
jbe@84 8 "auto_support" BOOLEAN NOT NULL DEFAULT FALSE;
poelzi@81 9
poelzi@79 10 COMMIT;

Impressum / About Us