Ident type update #2834

This commit is contained in:
Priit Tark 2015-09-17 17:52:47 +03:00
parent 2a81641130
commit fd52172500
9 changed files with 32 additions and 25 deletions

View file

@ -201,6 +201,7 @@ ActiveRecord::Schema.define(version: 20150915094707) do
t.integer "legacy_id"
t.string "statuses", array: true
t.hstore "status_notes"
t.integer "legacy_history_id"
t.integer "copy_from_id"
end
@ -887,8 +888,8 @@ ActiveRecord::Schema.define(version: 20150915094707) do
t.string "cc"
t.text "body", null: false
t.text "text_body", null: false
t.datetime "created_at", null: false
t.datetime "updated_at", null: false
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "messages", force: :cascade do |t|

View file

@ -597,6 +597,7 @@ CREATE TABLE contacts (
legacy_id integer,
statuses character varying[],
status_notes hstore,
legacy_history_id integer,
copy_from_id integer
);
@ -2242,8 +2243,8 @@ CREATE TABLE mail_templates (
cc character varying,
body text NOT NULL,
text_body text NOT NULL,
created_at timestamp without time zone NOT NULL,
updated_at timestamp without time zone NOT NULL
created_at timestamp without time zone,
updated_at timestamp without time zone
);
@ -4927,8 +4928,12 @@ INSERT INTO schema_migrations (version) VALUES ('20150803080914');
INSERT INTO schema_migrations (version) VALUES ('20150810114746');
INSERT INTO schema_migrations (version) VALUES ('20150810114747');
INSERT INTO schema_migrations (version) VALUES ('20150825125118');
INSERT INTO schema_migrations (version) VALUES ('20150827151906');
INSERT INTO schema_migrations (version) VALUES ('20150910113839');
INSERT INTO schema_migrations (version) VALUES ('20150915094707');