class CreateOrcamentos < ActiveRecord::Migration[4.2]
	def self.up
		create_table :orcamentos do |t|
			t.integer :exercicio, limit: 6
			t.string :numero_da_lei, limit: 10

			t.timestamps null: false
		end
	end

	def self.down
		drop_table :orcamentos
	end
end
