liquid_feedback_core
annotate update/core-update.v1.2.2-v1.2.3.sql @ 97:58451b5565ae
Introduced (organizational) units
- New table "unit"
- Each "area" refers to one unit
- "invite_code"s are valid for one or many units
- New table "privilege" stores "voting_right" for units
- Delegation scope 'global' is replaced by delegation scope 'unit'
- View "global_delegation" is replaced by "unit_delegation"
- Removed helper view "active_delegation"
- Checking that members have "voting_right" in several views and functions
- New view "unit_member_count" to update "member_count" column of new unit table
- New argument list for function "delegation_chain"(...) containing "unit_id"
- Renamed column "member_active" to "member_valid" in "delegation_chain_row"
- Modified demo.sql and init.sql to support units
- New table "unit"
- Each "area" refers to one unit
- "invite_code"s are valid for one or many units
- New table "privilege" stores "voting_right" for units
- Delegation scope 'global' is replaced by delegation scope 'unit'
- View "global_delegation" is replaced by "unit_delegation"
- Removed helper view "active_delegation"
- Checking that members have "voting_right" in several views and functions
- New view "unit_member_count" to update "member_count" column of new unit table
- New argument list for function "delegation_chain"(...) containing "unit_id"
- Renamed column "member_active" to "member_valid" in "delegation_chain_row"
- Modified demo.sql and init.sql to support units
author | jbe |
---|---|
date | Tue Dec 07 00:04:44 2010 +0100 (2010-12-07) |
parents | 1af482e378a1 |
children |
rev | line source |
---|---|
jbe@63 | 1 BEGIN; |
jbe@63 | 2 |
jbe@63 | 3 CREATE OR REPLACE VIEW "liquid_feedback_version" AS |
jbe@63 | 4 SELECT * FROM (VALUES ('1.2.3', 1, 2, 3)) |
jbe@63 | 5 AS "subquery"("string", "major", "minor", "revision"); |
jbe@63 | 6 |
jbe@63 | 7 CREATE TABLE "rendered_draft" ( |
jbe@63 | 8 PRIMARY KEY ("draft_id", "format"), |
jbe@63 | 9 "draft_id" INT8 REFERENCES "draft" ("id") ON DELETE CASCADE ON UPDATE CASCADE, |
jbe@63 | 10 "format" TEXT, |
jbe@63 | 11 "content" TEXT NOT NULL ); |
jbe@63 | 12 |
jbe@63 | 13 COMMENT ON TABLE "rendered_draft" IS 'This table may be used by frontends to cache "rendered" drafts (e.g. HTML output generated from wiki text)'; |
jbe@63 | 14 |
jbe@63 | 15 COMMIT; |