Skip to content

Instantly share code, notes, and snippets.

@keevie
Created January 11, 2017 02:56
Show Gist options
  • Save keevie/fea76b34f756eb1e87364e4d31e90668 to your computer and use it in GitHub Desktop.
Save keevie/fea76b34f756eb1e87364e4d31e90668 to your computer and use it in GitHub Desktop.
class CreatePeopleTable < ActiveRecord::Migration[5.0]
def change
create_table :people do |t|
t.string :name, null: false
t.integer :house_id, null: false
t.belongs_to :house
t.timestamps
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment