Skip to content

Instantly share code, notes, and snippets.

@sinfante
sinfante / migration.rb
Created December 4, 2013 20:50
Ruby on Rails seed for regions and counties ("comunas") of Chile with the required migrations.
class Migration < ActiveRecord::Migration
def change
create_table :countries do |t|
t.string :name
t.timestamps
end
create_table :regions do |t|
t.string :short_name