class CreateContabilidadeGrupoDeContas < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_grupo_de_contas do |t|
      t.integer :orcamento_id
      t.integer :codigo
      t.string :nome

      t.timestamps null: false
    end
  end
end
