bornhack-website/src/profiles/migrations/0007_auto_20170711_2025.py

20 lines
489 B
Python
Raw Normal View History

2017-07-11 20:50:31 +00:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-07-11 18:25
from __future__ import unicode_literals
from django.db import migrations
2019-06-16 12:32:24 +00:00
2017-07-11 20:50:31 +00:00
def populate_team_responsible_public_credit_names(apps, schema_editor):
2017-07-11 21:11:31 +00:00
pass
2017-07-11 20:50:31 +00:00
2019-06-16 12:32:24 +00:00
2017-07-11 20:50:31 +00:00
class Migration(migrations.Migration):
dependencies = [
2019-06-16 12:32:24 +00:00
("profiles", "0006_auto_20170711_1757"),
("teams", "0014_remove_teammember_deleted"),
2017-07-11 20:50:31 +00:00
]
2019-06-16 12:32:24 +00:00
operations = [migrations.RunPython(populate_team_responsible_public_credit_names)]