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

      t.timestamps null: false
    end
  end
end
