24 lines
556 B
Python
24 lines
556 B
Python
# -*- 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),
|
|
]
|