summaryrefslogtreecommitdiff
path: root/app/Schema/Sqlite.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2016-09-07 22:40:38 -0400
committerFrederic Guillot <fred@kanboard.net>2016-09-07 22:40:38 -0400
commitdded773749e869893a00865cf2183a7f0c684038 (patch)
tree1162daf867bfb23289e0d8488b60a861d6bf9786 /app/Schema/Sqlite.php
parent102de7e3860929e62578a6c96f810252dc572bdf (diff)
Add new models ColumnMoveRestrictionModel and ProjectRoleModel
Diffstat (limited to 'app/Schema/Sqlite.php')
-rw-r--r--app/Schema/Sqlite.php30
1 files changed, 29 insertions, 1 deletions
diff --git a/app/Schema/Sqlite.php b/app/Schema/Sqlite.php
index 2a7735ee..ecfa93de 100644
--- a/app/Schema/Sqlite.php
+++ b/app/Schema/Sqlite.php
@@ -6,7 +6,35 @@ use Kanboard\Core\Security\Token;
use Kanboard\Core\Security\Role;
use PDO;
-const VERSION = 103;
+const VERSION = 104;
+
+function version_104(PDO $pdo)
+{
+ $pdo->exec("
+ CREATE TABLE project_has_roles (
+ role_id INTEGER PRIMARY KEY,
+ role TEXT NOT NULL,
+ project_id INTEGER NOT NULL,
+ UNIQUE(project_id, role),
+ FOREIGN KEY(project_id) REFERENCES projects(id) ON DELETE CASCADE
+ )
+ ");
+
+ $pdo->exec("
+ CREATE TABLE column_has_move_restrictions (
+ restriction_id INTEGER PRIMARY KEY,
+ project_id INTEGER NOT NULL,
+ role_id INTEGER NOT NULL,
+ src_column_id INTEGER NOT NULL,
+ dst_column_id INTEGER NOT NULL,
+ UNIQUE(role_id, src_column_id, dst_column_id),
+ FOREIGN KEY(project_id) REFERENCES projects(id) ON DELETE CASCADE,
+ FOREIGN KEY(role_id) REFERENCES project_has_roles(role_id) ON DELETE CASCADE,
+ FOREIGN KEY(src_column_id) REFERENCES columns(id) ON DELETE CASCADE,
+ FOREIGN KEY(dst_column_id) REFERENCES columns(id) ON DELETE CASCADE
+ )
+ ");
+}
function version_103(PDO $pdo)
{