liquid_feedback_core

changeset 90:1934f9b4f803

Removed "auto_support" stub
(update file not modified)
author jbe
date Sun Oct 31 01:47:44 2010 +0200 (2010-10-31)
parents d7eadecc7b05
children 8387388f1f7c
files core.sql
line diff
     1.1 --- a/core.sql	Fri Oct 29 18:36:36 2010 +0200
     1.2 +++ b/core.sql	Sun Oct 31 01:47:44 2010 +0200
     1.3 @@ -632,15 +632,13 @@
     1.4          "initiative_id"         INT4,
     1.5          "member_id"             INT4,
     1.6          "draft_id"              INT8            NOT NULL,
     1.7 -        "auto_support"          BOOLEAN         NOT NULL DEFAULT FALSE,
     1.8          FOREIGN KEY ("issue_id", "member_id") REFERENCES "interest" ("issue_id", "member_id") ON DELETE CASCADE ON UPDATE CASCADE,
     1.9          FOREIGN KEY ("initiative_id", "draft_id") REFERENCES "draft" ("initiative_id", "id") ON DELETE CASCADE ON UPDATE CASCADE );
    1.10  CREATE INDEX "supporter_member_id_idx" ON "supporter" ("member_id");
    1.11  
    1.12  COMMENT ON TABLE "supporter" IS 'Members who support an initiative (conditionally); Frontends must ensure that supporters are not added or removed from fully_frozen or closed initiatives.';
    1.13  
    1.14 -COMMENT ON COLUMN "supporter"."draft_id"     IS 'Latest seen draft, defaults to current draft of the initiative (implemented by trigger "default_for_draft_id")';
    1.15 -COMMENT ON COLUMN "supporter"."auto_support" IS 'Supporting member does not want to confirm new drafts of the initiative';
    1.16 +COMMENT ON COLUMN "supporter"."draft_id" IS 'Latest seen draft, defaults to current draft of the initiative (implemented by trigger "default_for_draft_id")';
    1.17  
    1.18  
    1.19  CREATE TABLE "opinion" (

Impressum / About Us