Say I have a model with a field as such:
begin_date = models.DateTimeField(blank=True)
Whenever I want to add a date using a string, for example, '2020-06-15T11:00' it gives me the RuntimeWarning: received a naive datetime while time zone support is active.
So what's the proper way of adding date to a model in Django?
Z, it is in UTC:'2020-06-15T11:00Z'.