Simply put, this is my question:
class A(models.Model):
x = DateTimeField(...)
class B(models.Model):
x = DateField(...)
Given an instance of A and B, how easy is it to set bx to ax? Just setting bx to ax causes bx to not be None.
Thanks in advance.
source
share