Fix typo in schema declaration

This commit is contained in:
Frederic Guillot 2015-10-17 22:33:23 -04:00
parent ad55e6ede5
commit 11f16bce82
1 changed files with 1 additions and 1 deletions

View File

@ -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
");
}