liquid_feedback_core

changeset 603:617ac1725557

Removed column "content_type" from table "draft_attachment" (Content type is stored in "file" table instead)
author jbe
date Mon Feb 10 20:33:10 2020 +0100 (2020-02-10)
parents 9570aeabf4fc
children f69e0d9e5bb3
files core.sql update/core-update.v4.1.0-v4.2.0.sql
line diff
     1.1 --- a/core.sql	Fri Feb 07 10:52:37 2020 +0100
     1.2 +++ b/core.sql	Mon Feb 10 20:33:10 2020 +0100
     1.3 @@ -1018,7 +1018,6 @@
     1.4          "id"                    SERIAL8         PRIMARY KEY,
     1.5          "draft_id"              INT8            REFERENCES "draft" ("id") ON DELETE CASCADE ON UPDATE CASCADE,
     1.6          "file_id"               INT8            REFERENCES "file" ("id") ON DELETE RESTRICT ON UPDATE CASCADE,
     1.7 -        "content_type"          TEXT,
     1.8          "title"                 TEXT,
     1.9          "description"           TEXT );
    1.10  
     2.1 --- a/update/core-update.v4.1.0-v4.2.0.sql	Fri Feb 07 10:52:37 2020 +0100
     2.2 +++ b/update/core-update.v4.1.0-v4.2.0.sql	Mon Feb 10 20:33:10 2020 +0100
     2.3 @@ -97,7 +97,6 @@
     2.4          "id"                    SERIAL8         PRIMARY KEY,
     2.5          "draft_id"              INT8            REFERENCES "draft" ("id") ON DELETE CASCADE ON UPDATE CASCADE,
     2.6          "file_id"               INT8            REFERENCES "file" ("id") ON DELETE RESTRICT ON UPDATE CASCADE,
     2.7 -        "content_type"          TEXT,
     2.8          "title"                 TEXT,
     2.9          "description"           TEXT );
    2.10  

Impressum / About Us