diff options
Diffstat (limited to 'sql')
-rw-r--r-- | sql/Pg-database.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/Pg-database.sql b/sql/Pg-database.sql index d4f98b54..851995b2 100644 --- a/sql/Pg-database.sql +++ b/sql/Pg-database.sql @@ -135,7 +135,7 @@ CREATE TABLE location ( line_two text, line_three text, city text check (city '[[:alnum:]_]') NOT NULL, - province text check(province '[[:alnum:]_]' NOT NULL), + state text check(state '[[:alnum:]_]' NOT NULL), country_id integer not null REFERENCES country(id), mail_code text not null check (mail_code ~ '[[:alnum:]_]'), created date not null, |