class CreateContabilidadeTiposDeNotaFiscal < ActiveRecord::Migration[4.2]
	def change
		create_table :contabilidade_tipos_de_nota_fiscal do |t|
			t.references :modulo, :polymorphic => true
			t.string :codigo, limit: 1
			t.string :descricao

			t.timestamps null: false
		end
	end
end
