def setUp(self):
     self.pcf = ProductCharField(name='test char field')
     self.pcf.save()
     self.product_type = ProductType(name='test type')
     self.product_type.save()
     TypeChar.objects.create(field=self.pcf, type=self.product_type, order=2)