mirror of
https://github.com/internetee/registry.git
synced 2025-07-02 17:23:34 +02:00
Allow invalid ident update #2859
This commit is contained in:
parent
0944bd2077
commit
4a32c7641c
18 changed files with 101 additions and 32 deletions
|
@ -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');
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue