add a migration that creates UserProfile records for all User records
This commit is contained in:
parent
032dd502e6
commit
dbfded9e86
23
nsupdate/accounts/migrations/0002_auto_20141125_2325.py
Normal file
23
nsupdate/accounts/migrations/0002_auto_20141125_2325.py
Normal 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),
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user