Skip to content

Instantly share code, notes, and snippets.

@axilaris
Created March 1, 2014 02:41
Show Gist options
  • Save axilaris/9284218 to your computer and use it in GitHub Desktop.
Save axilaris/9284218 to your computer and use it in GitHub Desktop.
class CreateCountries < ActiveRecord::Migration
def change
create_table :countries do |t|
t.string :name
t.string :country_code
t.string :currency_name
t.string :currency_code
t.decimal :rate
t.timestamps
end
end
end
c
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment