forked from DGNum/gestioCOF
9409b55df5
- Add missing migrations - Fix dependencies - rename gestioncof -> cof
42 lines
1.1 KiB
Python
42 lines
1.1 KiB
Python
from django.db import migrations
|
|
|
|
from kfet.auth import KFET_GENERIC_TRIGRAMME, KFET_GENERIC_USERNAME
|
|
|
|
|
|
def setup_kfet_generic_user(apps, schema_editor):
|
|
"""
|
|
Setup models instances for the kfet generic account.
|
|
|
|
Username and trigramme are retrieved from kfet.auth.__init__ module.
|
|
Other data are registered here.
|
|
|
|
See also setup_kfet_generic_user from kfet.auth.utils module.
|
|
"""
|
|
User = apps.get_model('auth', 'User')
|
|
CofProfile = apps.get_model('cof', 'CofProfile')
|
|
Account = apps.get_model('kfet', 'Account')
|
|
|
|
user, _ = User.objects.update_or_create(
|
|
username=KFET_GENERIC_USERNAME,
|
|
defaults={
|
|
'first_name': 'Compte générique K-Fêt',
|
|
},
|
|
)
|
|
profile, _ = CofProfile.objects.update_or_create(user=user)
|
|
account, _ = Account.objects.update_or_create(
|
|
cofprofile=profile,
|
|
defaults={
|
|
'trigramme': KFET_GENERIC_TRIGRAMME,
|
|
},
|
|
)
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('kfet', '0058_delete_genericteamtoken'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.RunPython(setup_kfet_generic_user),
|
|
]
|