Ognjen Kosanovic

Results 2 issues of Ognjen Kosanovic

Hi, I have 2 models: ``` class Model_A(LifecycleModelMixin, models.Model): code = models.CharField(max_length=50) class Model_B(LifecycleModelMixin, models.Model): code = models.CharField(max_length=50) model_a = models.ForeignKey(to="app.Model_A", on_delete=models.CASCADE, blank=True, null=True) @hook(AFTER_DELETE) def do_after_delete(self): print("AFTER_DELETE") @hook(BEFORE_DELETE) def...

Hi, I have an application which is supposed to use a couple of different Oracle Directories for some XML file processing duties. I am running into trouble setting up these...

question