This commit is contained in:
2015-09-20 13:26:45 -05:00
parent f8c03d6f5c
commit 692446b97b
25 changed files with 283 additions and 13 deletions

View File

@ -0,0 +1,12 @@
class CreatePages < ActiveRecord::Migration
def change
create_table :pages do |t|
t.integer :user_id
t.integer :person_id
t.string :phone
t.string :message
t.string :status
t.timestamps null: false
end
end
end