#1485420: remove default (and not null) for users.language column in DDL

This commit is contained in:
alecpl
2008-11-25 10:17:57 +00:00
parent 938e96a3e5
commit debdda0117
7 changed files with 11 additions and 6 deletions

View File

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