diff options
author | alecpl <alec@alec.pl> | 2008-11-25 10:17:57 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-11-25 10:17:57 +0000 |
commit | debdda011717e63945a0f6a9db6ab77b30a47079 (patch) | |
tree | 275bbcbd12446a28c387ba9fd68e7daa76c4fd85 /SQL/postgres.initial.sql | |
parent | 938e96a3e594cd96612eba53e6c81fb39b74017e (diff) |
#1485420: remove default (and not null) for users.language column in DDL
Diffstat (limited to 'SQL/postgres.initial.sql')
-rw-r--r-- | SQL/postgres.initial.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SQL/postgres.initial.sql b/SQL/postgres.initial.sql index b5f7779d7..d2e56980b 100644 --- a/SQL/postgres.initial.sql +++ b/SQL/postgres.initial.sql @@ -21,7 +21,7 @@ CREATE TABLE users ( alias character varying(128) DEFAULT ''::character varying NOT NULL, created timestamp with time zone DEFAULT now() NOT NULL, last_login timestamp with time zone DEFAULT now() NOT NULL, - "language" character varying(5) DEFAULT 'en'::character varying NOT NULL, + "language" character varying(5), preferences text DEFAULT ''::text NOT NULL ); |