docbrown/db/migrate/20170802204604_create_notes.rb
2018-02-28 16:11:08 -05:00

11 lines
208 B
Ruby

class CreateNotes < ActiveRecord::Migration
def change
create_table :notes do |t|
t.integer :user_id
t.text :content
t.string :reason
t.timestamps null: false
end
end
end