20121205143250_create_states.rb 252 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 # Author - Igor Portela - igorportela.com | Copyright(c) 2013. All rights reserved. class CreateStates < ActiveRecord::Migration def change create_table :states do |t| t.string :uf t.string :name t.timestamps end end end