class CreateControladoriaCentroDeCustos < ActiveRecord::Migration[5.2]
  def change
    create_table :controladoria_centro_de_custos do |t|
      t.bigint :unidade_gestora_id
      t.bigint :centro_de_custos_mae_id
      t.string :codigo
      t.integer :nivel
      t.string :descricao
      t.integer :status

      t.timestamps
    end
  end
end
