class CreateLoaGestores < ActiveRecord::Migration[4.2]
  def change
    create_table :loa_gestores do |t|
      t.integer :unidade_gestora_id
      t.integer :agente_publico_municipal_id
      t.date :inicio_da_gestao
      t.date :fim_da_gestao

      t.timestamps null: false
    end
  end
end
