Showing posts with label utc. Show all posts
Showing posts with label utc. Show all posts

Feb 5, 2019

Django update UTC time to MySQL

from datetime import datetime
from django.utils.timezone import utc

sch = Schedule.objects.get(id=25)
sch.start_time = datetime.utcnow().replace(tzinfo=utc)
sch.save()