Created
January 11, 2017 02:56
-
-
Save keevie/fea76b34f756eb1e87364e4d31e90668 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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