class CreateContabilidadeSubElementosDeDespesaComMatrizVinculada < ActiveRecord::Migration[5.2]
  def change
    create_table :contabilidade_sub_elementos_de_despesa_com_matriz_vinculada do |t|
      t.bigint :sub_elemento_de_despesa_id
      t.bigint :sub_elemento_de_despesa_da_matriz_id
      t.bigint :elemento_de_despesa_id

      t.timestamps
    end
  end
end
