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:
Manjinder Singh
2019-10-23 13:04:36 -04:00
committed by GitHub
parent 6e0914ad5d
commit a40f1d9bd6
22 changed files with 46 additions and 46 deletions

View File

@@ -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):