Allow invalid ident update #2859

This commit is contained in:
Priit Tark 2015-09-23 12:32:26 +03:00
parent 0944bd2077
commit 4a32c7641c
18 changed files with 101 additions and 32 deletions

View file

@ -598,7 +598,8 @@ CREATE TABLE contacts (
statuses character varying[],
status_notes hstore,
legacy_history_id integer,
copy_from_id integer
copy_from_id integer,
ident_updated_at timestamp without time zone
);
@ -1502,7 +1503,8 @@ CREATE TABLE log_contacts (
object_changes json,
created_at timestamp without time zone,
session character varying,
children json
children json,
ident_updated_at timestamp without time zone
);
@ -4934,7 +4936,13 @@ INSERT INTO schema_migrations (version) VALUES ('20150825125118');
INSERT INTO schema_migrations (version) VALUES ('20150827151906');
INSERT INTO schema_migrations (version) VALUES ('20150903105659');
INSERT INTO schema_migrations (version) VALUES ('20150910113839');
INSERT INTO schema_migrations (version) VALUES ('20150915094707');
INSERT INTO schema_migrations (version) VALUES ('20150921110152');
INSERT INTO schema_migrations (version) VALUES ('20150921111842');