This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2020-10-17 14:33:23 +00:00
|
|
|
# Generated by Django 3.1.2 on 2020-10-17 14:26
|
|
|
|
|
|
|
|
from django.apps.registry import Apps
|
|
|
|
from django.db import migrations
|
|
|
|
from django.db.backends.base.schema import BaseDatabaseSchemaEditor
|
|
|
|
|
|
|
|
|
|
|
|
def fix_missing_token_identifier(apps: Apps, schema_editor: BaseDatabaseSchemaEditor):
|
2020-10-17 15:06:08 +00:00
|
|
|
from passbook.outposts.models import Outpost
|
|
|
|
|
2020-10-17 14:33:23 +00:00
|
|
|
for outpost in Outpost.objects.using(schema_editor.connection.alias).all():
|
|
|
|
token = outpost.token
|
|
|
|
if token.identifier != outpost.token_identifier:
|
|
|
|
token.identifier = outpost.token_identifier
|
|
|
|
token.save()
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
2020-10-18 12:34:22 +00:00
|
|
|
("passbook_core", "0014_auto_20201018_1158"),
|
2020-10-17 14:33:23 +00:00
|
|
|
("passbook_outposts", "0008_auto_20201014_1547"),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.RunPython(fix_missing_token_identifier),
|
|
|
|
]
|