From: Domas Mituzas Date: Wed, 15 Sep 2004 07:14:38 +0000 (+0000) Subject: fix casting typo X-Git-Tag: 1.5.0alpha1~2003 X-Git-Url: https://git.cyclocoop.org/%7B%24www_url%7Dadmin/compta/banques/?a=commitdiff_plain;h=44d63247c6927fbaea2382c876949632debb59d3;p=lhc%2Fweb%2Fwiklou.git fix casting typo --- diff --git a/maintenance/postgresql/pg_tables.sql b/maintenance/postgresql/pg_tables.sql index 5070ae848a..5d5c561d6d 100644 --- a/maintenance/postgresql/pg_tables.sql +++ b/maintenance/postgresql/pg_tables.sql @@ -11,9 +11,9 @@ CREATE TABLE cur ( cur_text text NOT NULL, cur_comment text, cur_user integer DEFAULT 0 NOT NULL, - cur_user_text varchar(255) DEFAULT '' NOT NULL, + cur_user_text varchar(255) DEFAULT ''::varchar NOT NULL, cur_timestamp timestamp without time zone NOT NULL, - cur_restrictions text DEFAULT '':text NOT NULL, + cur_restrictions text DEFAULT ''::text NOT NULL, cur_counter bigint DEFAULT 0 NOT NULL, cur_is_redirect smallint DEFAULT 0 NOT NULL, cur_minor_edit smallint DEFAULT 0 NOT NULL,