別の場所に2つの個別のdjangoサーバーとmysqlサーバーがあります
djangoモデルを使用して、オブジェクトを作成/更新しようとすると(以下のコードのように)。結果は、同じ django サーバーの現地時間値を持つ両方の 3 列です。それを行うときにdbサーバーの現地時間を取得する方法。
私のモデル:
class Test(models.Model):
id = models.AutoField(primary_key = True, null = False)
create = models.DateTimeField(auto_now_add=True)
update = models.DateTimeField(auto_now=True)
test = models.DateTimeField(null=True)
私のコード:
y = Test()
y.test = datetime.now()
y.save()
結果
id create update test
------ ------------------- ------------------- -------------------
6 2013-10-07 06:57:04 2013-10-07 06:57:04 2013-10-07 06:57:04