class CreateLoaProgramasDeGoverno < ActiveRecord::Migration[4.2]
	def self.up
		create_table :loa_programas_de_governo do |t|
			t.integer :orcamento_id
			t.string :codigo, limit: 4
			t.string :nome, limit: 120

			t.timestamps null: false
		end
	end

	def self.down
		drop_table :base_alineas
	end
end
