Created
March 16, 2017 15:57
-
-
Save makefunstuff/b714c03a52071bc28836f6f74f63a16b 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 CreateUpdates < ActiveRecord::Migration[5.0] | |
def change | |
create_table :updates do |t| | |
t.integer :user_id | |
t.integer :mood | |
t.text :message | |
t.timestamps | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment