class CreateIptcCountries < ActiveRecord::Migration
  def change
    create_table :iptc_countries do |t|
      t.string :code
      t.string :en
      t.string :fr
    end
  end
end
