Skip to content

Instantly share code, notes, and snippets.

@axilaris
Created March 8, 2014 13:03
Show Gist options
  • Save axilaris/9430277 to your computer and use it in GitHub Desktop.
Save axilaris/9430277 to your computer and use it in GitHub Desktop.
class AddFieldsToUsers < ActiveRecord::Migration
def change
add_column :users, :firstname, :string
add_column :users, :lastname, :string
add_column :users, :phone_mobile, :string
add_column :users, :activated, :boolean
add_reference :users, :country, index: true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment