13 lines
258 B
Ruby
13 lines
258 B
Ruby
|
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
|