diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-10-17 22:33:23 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-10-17 22:33:23 -0400 |
commit | 11f16bce82d4bbfd8dc30342eaab59de12c5421d (patch) | |
tree | 30559bef99b5caf4d2664898e6ef6c938a061f2d /app/Schema/Mysql.php | |
parent | ad55e6ede5fab449c91aced8c1a42ae4ee7b809c (diff) |
Fix typo in schema declaration
Diffstat (limited to 'app/Schema/Mysql.php')
-rw-r--r-- | app/Schema/Mysql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Schema/Mysql.php b/app/Schema/Mysql.php index d3c0d3b6..458fa81a 100644 --- a/app/Schema/Mysql.php +++ b/app/Schema/Mysql.php @@ -67,7 +67,7 @@ function version_92($pdo) notification_type VARCHAR(50) NOT NULL, PRIMARY KEY(id), FOREIGN KEY(project_id) REFERENCES projects(id) ON DELETE CASCADE - UNIQUE(project_id, notification_type), + UNIQUE(project_id, notification_type) ) ENGINE=InnoDB CHARSET=utf8 "); } |