diff options
| author | 2017-04-01 11:26:05 +0200 | |
|---|---|---|
| committer | 2017-04-01 11:26:05 +0200 | |
| commit | f2b4bfc67da9eba8ca45a02860e6f6a58a13d927 (patch) | |
| tree | 80279b50b61372b46ae0b526b4b95d81b3a9852b /app/SQL/install.sql.pgsql.php | |
| parent | e042e4ad2595263a84a6fe1056913ec431b9814a (diff) | |
| parent | 50fd3a359e1fb872859b12af2762e47a696ebcd3 (diff) | |
Merge pull request #1476 from Alkarex/postgress-uniqueness
Fix PostgreSQL uniqueness
Diffstat (limited to 'app/SQL/install.sql.pgsql.php')
| -rw-r--r-- | app/SQL/install.sql.pgsql.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/SQL/install.sql.pgsql.php b/app/SQL/install.sql.pgsql.php index 9f4240b98..2775dab5b 100644 --- a/app/SQL/install.sql.pgsql.php +++ b/app/SQL/install.sql.pgsql.php @@ -32,7 +32,7 @@ $SQL_CREATE_TABLES = array( 'CREATE TABLE IF NOT EXISTS "%1$sentry" ( "id" BIGINT NOT NULL PRIMARY KEY, - "guid" VARCHAR(760) UNIQUE NOT NULL, + "guid" VARCHAR(760) NOT NULL, "title" VARCHAR(255) NOT NULL, "author" VARCHAR(255), "content" TEXT, |
