class CreatePpaColaboradores < ActiveRecord::Migration[4.2]
  def change
    create_table :ppa_colaboradores do |t|
      t.string :nome
      t.string :cargo
      t.integer :ordem_de_impressao

      t.timestamps null: false
    end
  end
end
