diff options
author | Evgeny Khramtsov <ekhramtsov@process-one.net> | 2019-10-23 14:40:32 +0300 |
---|---|---|
committer | Evgeny Khramtsov <ekhramtsov@process-one.net> | 2019-10-23 14:40:32 +0300 |
commit | 86bb77bfc201d4dddeacd40ccf7167b06c71265a (patch) | |
tree | 2540dcead50fad54ff6be881413b41aa9ec03c89 | |
parent | Merge pull request #3063 from lnjX/fix/de-comma-setting (diff) |
Make PostgreSQL schema compatible with CockroachDB
-rw-r--r-- | sql/pg.new.sql | 2 | ||||
-rw-r--r-- | sql/pg.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sql/pg.new.sql b/sql/pg.new.sql index 1a3d52316..59fdfc75d 100644 --- a/sql/pg.new.sql +++ b/sql/pg.new.sql @@ -282,7 +282,7 @@ CREATE TABLE vcard_search ( server_host text NOT NULL, fn text NOT NULL, lfn text NOT NULL, - family text NOT NULL, + "family" text NOT NULL, lfamily text NOT NULL, given text NOT NULL, lgiven text NOT NULL, diff --git a/sql/pg.sql b/sql/pg.sql index 34d9a4867..2382338cc 100644 --- a/sql/pg.sql +++ b/sql/pg.sql @@ -125,7 +125,7 @@ CREATE TABLE vcard_search ( lusername text PRIMARY KEY, fn text NOT NULL, lfn text NOT NULL, - family text NOT NULL, + "family" text NOT NULL, lfamily text NOT NULL, given text NOT NULL, lgiven text NOT NULL, |