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

@ -0,0 +1,10 @@
class CreateContactStatuses < ActiveRecord::Migration
def change
create_table :contact_statuses do |t|
t.string :value
t.string :description
t.belongs_to :contact
t.timestamps
end
end
end