20121205143250_create_states.rb 252 Bytes
# 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