class CreateBaseSubfuncao < ActiveRecord::Migration[4.2]
	def self.up
		create_table :base_subfuncoes do |t|
			t.string :codigo
			t.string :nome
			t.integer :funcao_id

			t.timestamps null: false
		end
	end

	def self.down
		drop_table :base_subfuncoes
	end
end
