You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
600 B

  1. # -*- coding: utf-8 -*-
  2. # Generated by Django 1.9 on 2016-05-09 10:34
  3. from __future__ import unicode_literals
  4. from django.db import migrations, models
  5. import django.db.models.deletion
  6. class Migration(migrations.Migration):
  7. dependencies = [("accounts", "0005_auto_20160509_0801")]
  8. operations = [
  9. migrations.AddField(
  10. model_name="profile",
  11. name="current_team",
  12. field=models.ForeignKey(
  13. null=True,
  14. on_delete=django.db.models.deletion.SET_NULL,
  15. to="accounts.Profile",
  16. ),
  17. )
  18. ]