summaryrefslogtreecommitdiff
path: root/app/Schema/Sqlite.php
diff options
context:
space:
mode:
authorFrederic Guillot <fred@kanboard.net>2015-11-15 19:29:31 -0500
committerFrederic Guillot <fred@kanboard.net>2015-11-15 19:29:31 -0500
commitadb35896d8c5bcc6673188921868e472ba35278e (patch)
tree1261fad74366d8d9e002e2f7cdbe39cd40109155 /app/Schema/Sqlite.php
parent968ae474541302c92f8ec62e9520299c8c95a57a (diff)
Projects with duplicate name are now allowed
Diffstat (limited to 'app/Schema/Sqlite.php')
-rw-r--r--app/Schema/Sqlite.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Schema/Sqlite.php b/app/Schema/Sqlite.php
index d27f11ec..fa26b158 100644
--- a/app/Schema/Sqlite.php
+++ b/app/Schema/Sqlite.php
@@ -1026,7 +1026,7 @@ function version_1(PDO $pdo)
$pdo->exec("
CREATE TABLE projects (
id INTEGER PRIMARY KEY,
- name TEXT NOCASE NOT NULL UNIQUE,
+ name TEXT NOCASE NOT NULL,
is_active INTEGER DEFAULT 1
)
");