I have a model called job and I want to set a datetime attribute (started_time) to MySQL now() value. how can I do that in Django?
I don't want to use the model auto_now or auto_now_add methods, since I have other applications who share the same DB and I don't want to handle timezones, thus I want to delegate that to MySQL