ambition/db/migrate/20161210045735_create_notes.rb

11 lines
219 B
Ruby

class CreateNotes < ActiveRecord::Migration
def change
create_table :notes do |t|
t.string :content
t.references :user, index: true, foreign_key: true
t.timestamps null: false
end
end
end