Skip to content

Instantly share code, notes, and snippets.

@Christian-G
Last active January 14, 2016 14:23
Show Gist options
  • Save Christian-G/31315eeea0788378be57 to your computer and use it in GitHub Desktop.
Save Christian-G/31315eeea0788378be57 to your computer and use it in GitHub Desktop.

dropdb pulse_dev

dropdb pulse_test

rake db:create

rm db/migrate/*

rails g model Service

rails g migration AddServiceFieldsToServices

edit your migration file (it's located in db/migration) and add this:

    add_column :services, :name, :text
    add_column :services, :description, :text

rake db:migrate

reboot server

rails s

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment