class CreateBaseNaturezaDaAcao < ActiveRecord::Migration[4.2]
	def self.up
		create_table :base_naturezas_das_acoes do |t|
			t.string :codigo, limit: 1
			t.string :descricao, limit: 40
			t.references :modulo, polymorphic: true

			t.timestamps null: false
		end
	end

	def self.down
		drop_table :base_naturezas_das_acoes
	end
end
