Refs #27858 -- Fixed typo in MigrationRecorder.applied_migrations() comment.
This commit is contained in:
parent
0b9ccf9e60
commit
24d7fe4933
|
@ -61,7 +61,7 @@ class MigrationRecorder:
|
||||||
if self.has_table():
|
if self.has_table():
|
||||||
return {tuple(x) for x in self.migration_qs.values_list('app', 'name')}
|
return {tuple(x) for x in self.migration_qs.values_list('app', 'name')}
|
||||||
else:
|
else:
|
||||||
# If the django_migrations table doesn't eixst, then no migrations
|
# If the django_migrations table doesn't exist, then no migrations
|
||||||
# are applied.
|
# are applied.
|
||||||
return set()
|
return set()
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue