Contact statuses and update_contact modified

This commit is contained in:
Andres Keskküla 2014-12-18 13:53:01 +02:00
parent c089544eae
commit 9c4f0a63a0
6 changed files with 107 additions and 3 deletions

View file

@ -11,7 +11,7 @@
#
# It's strongly recommended that you check this file into your version control system.
ActiveRecord::Schema.define(version: 20141203090115) do
ActiveRecord::Schema.define(version: 20141216075056) do
# These are extensions that must be enabled in order to support this database
enable_extension "plpgsql"
@ -59,6 +59,14 @@ ActiveRecord::Schema.define(version: 20141203090115) do
t.boolean "address"
end
create_table "contact_statuses", force: true do |t|
t.string "value"
t.string "description"
t.integer "contact_id"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "contact_versions", force: true do |t|
t.string "item_type", null: false
t.integer "item_id", null: false