add a migration that creates UserProfile records for all User records

This commit is contained in:
Thomas Waldmann 2014-11-25 23:44:20 +01:00
parent 032dd502e6
commit dbfded9e86

View File

@ -0,0 +1,23 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from django.contrib.auth import get_user_model
def add_userprofiles(apps, schema_editor):
User = get_user_model()
UserProfile = apps.get_model("accounts", "UserProfile")
for user in User.objects.all():
UserProfile.objects.get_or_create(user=user)
class Migration(migrations.Migration):
dependencies = [
('accounts', '0001_initial'),
]
operations = [
migrations.RunPython(add_userprofiles),
]