Last active
August 29, 2015 14:15
-
-
Save lazybios/72e39958b9d9ce9e0f2c to your computer and use it in GitHub Desktop.
This file contains 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
# create db migration file | |
rails g migration CreateIssues | |
# execute migration | |
rake db:migrate | |
# add new column | |
rails generate migration add_email_to_users email:string | |
# add foundation gem | |
# bundle install | |
# rails g foundation:install | |
# restart srever |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment