BOM-933: Fix type mismatches in various migrations 2 (#22115)
* Fix type mismatches in track migrations * Fix type mismatches in oauth_dispatch * Fix type mismatches in badges migrations * fix type mismatch in contentserver migrations * Fix type mismatches in mobile_api migrations * fix type mismatch in crawlers migrations * fix type mismatch in dark_lang migrations * fix type mismatch in branding migrations
This commit is contained in:
@@ -42,7 +42,7 @@ class TrackingLog(models.Model):
|
||||
.. pii_retirement: retained
|
||||
"""
|
||||
|
||||
dtcreated = models.DateTimeField('creation date', auto_now_add=True)
|
||||
dtcreated = models.DateTimeField(u'creation date', auto_now_add=True)
|
||||
username = models.CharField(max_length=32, blank=True)
|
||||
ip = models.CharField(max_length=32, blank=True)
|
||||
event_source = models.CharField(max_length=32)
|
||||
@@ -50,7 +50,7 @@ class TrackingLog(models.Model):
|
||||
event = models.TextField(blank=True)
|
||||
agent = models.CharField(max_length=256, blank=True)
|
||||
page = models.CharField(max_length=512, blank=True, null=True)
|
||||
time = models.DateTimeField('event time')
|
||||
time = models.DateTimeField(u'event time')
|
||||
host = models.CharField(max_length=64, blank=True)
|
||||
|
||||
class Meta(object):
|
||||
|
||||
Reference in New Issue
Block a user