class CreateBaseCategoriaEconomica < ActiveRecord::Migration[4.2]
	def self.up
		create_table :base_categorias_economicas do |t|
			t.string :codigo, limit: 8
			t.string :descricao
			t.integer :modulo_id
      t.string :modulo_type

			t.timestamps null: false
		end
	end

	def self.down
		drop_table :base_categorias_economicas
	end
end
