class CreateContabilidadeDecretos < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_decretos do |t|
      t.date :data_da_legislacao
      t.integer :tipo_de_legislacao
      t.integer :numero
      t.string :objetivo
      t.integer :tipo_de_movimento
      t.string :lei_autorizativa

      t.timestamps null: false
    end
  end
end
