summaryrefslogtreecommitdiff
path: root/schemas
diff options
context:
space:
mode:
Diffstat (limited to 'schemas')
-rw-r--r--schemas/mysql.php6
-rw-r--r--schemas/sqlite.php27
2 files changed, 32 insertions, 1 deletions
diff --git a/schemas/mysql.php b/schemas/mysql.php
index 3b9cc014..cdd497e3 100644
--- a/schemas/mysql.php
+++ b/schemas/mysql.php
@@ -2,6 +2,10 @@
namespace Schema;
+function version_11($pdo)
+{
+}
+
function version_10($pdo)
{
}
@@ -125,7 +129,7 @@ function version_1($pdo)
comment TEXT,
PRIMARY KEY (id),
FOREIGN KEY(task_id) REFERENCES tasks(id) ON DELETE CASCADE,
- FOREIGN KEY(user_id) REFERENCES tasks(id) ON DELETE CASCADE
+ FOREIGN KEY(user_id) REFERENCES users(id) ON DELETE CASCADE
) ENGINE=InnoDB CHARSET=utf8
");
diff --git a/schemas/sqlite.php b/schemas/sqlite.php
index 8e5698f5..26ae09f7 100644
--- a/schemas/sqlite.php
+++ b/schemas/sqlite.php
@@ -2,6 +2,33 @@
namespace Schema;
+function version_11($pdo)
+{
+ $pdo->exec(
+ 'ALTER TABLE comments RENAME TO comments_bak'
+ );
+
+ $pdo->exec(
+ 'CREATE TABLE comments (
+ id INTEGER PRIMARY KEY,
+ task_id INTEGER,
+ user_id INTEGER,
+ date INTEGER,
+ comment TEXT,
+ FOREIGN KEY(task_id) REFERENCES tasks(id) ON DELETE CASCADE,
+ FOREIGN KEY(user_id) REFERENCES users(id) ON DELETE CASCADE
+ )'
+ );
+
+ $pdo->exec(
+ 'INSERT INTO comments SELECT * FROM comments_bak'
+ );
+
+ $pdo->exec(
+ 'DROP TABLE comments_bak'
+ );
+}
+
function version_10($pdo)
{
$pdo->exec(