Change contacts.auth_info to NOT NULL

#660
This commit is contained in:
Artur Beljajev 2018-01-25 11:36:12 +02:00
parent 0751a69d83
commit 98339bc551
2 changed files with 8 additions and 1 deletions

View file

@ -652,7 +652,7 @@ CREATE TABLE contacts (
updated_at timestamp without time zone,
ident character varying,
ident_type character varying,
auth_info character varying,
auth_info character varying NOT NULL,
name character varying,
org_name character varying,
registrar_id integer NOT NULL,
@ -5066,3 +5066,5 @@ INSERT INTO schema_migrations (version) VALUES ('20180123165604');
INSERT INTO schema_migrations (version) VALUES ('20180123170112');
INSERT INTO schema_migrations (version) VALUES ('20180125092422');