diff options
author | Busfreak <Busfreak@users.noreply.github.com> | 2016-07-05 17:09:13 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2016-07-05 11:09:13 -0400 |
commit | 6ccd8c11faff4a8b5209b45c140d12f94d97449b (patch) | |
tree | 74fda85e7f5d1ab359e4aa77c8b944e92da59805 /app/Schema/Sql | |
parent | b215296f971eaf35773218740d3d6696f8dc2310 (diff) |
Hide tasks within specific columns in dashboard (#2424)
Diffstat (limited to 'app/Schema/Sql')
-rw-r--r-- | app/Schema/Sql/mysql.sql | 1 | ||||
-rw-r--r-- | app/Schema/Sql/postgres.sql | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/app/Schema/Sql/mysql.sql b/app/Schema/Sql/mysql.sql index 9583989d..8d2f2dc0 100644 --- a/app/Schema/Sql/mysql.sql +++ b/app/Schema/Sql/mysql.sql @@ -44,6 +44,7 @@ CREATE TABLE `columns` ( `position` int(11) NOT NULL, `project_id` int(11) NOT NULL, `task_limit` int(11) DEFAULT '0', + `hide_in_dashboard` int(11) DEFAULT '0', `description` text, PRIMARY KEY (`id`), UNIQUE KEY `idx_title_project` (`title`,`project_id`), diff --git a/app/Schema/Sql/postgres.sql b/app/Schema/Sql/postgres.sql index 94239054..ae8b4fd5 100644 --- a/app/Schema/Sql/postgres.sql +++ b/app/Schema/Sql/postgres.sql @@ -98,6 +98,7 @@ CREATE TABLE "columns" ( "position" integer, "project_id" integer NOT NULL, "task_limit" integer DEFAULT 0, + "hide_in_dashboard" integer DEFAULT 0, "description" "text" ); |