mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 11:53:12 +00:00
Custom User model migrations
This commit is contained in:
parent
08d17a9642
commit
63d15433ff
2 changed files with 53 additions and 0 deletions
35
users/migrations/0017_auto_20160707_0105.py
Normal file
35
users/migrations/0017_auto_20160707_0105.py
Normal file
|
@ -0,0 +1,35 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
def move_passwords(apps, schema_editor):
|
||||||
|
User = apps.get_model('users', 'User')
|
||||||
|
for row in User.objects.all():
|
||||||
|
row.password = row.pwd_ssha
|
||||||
|
row.save()
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('users', '0016_auto_20160706_1220'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='user',
|
||||||
|
name='last_login',
|
||||||
|
field=models.DateTimeField(null=True, blank=True, verbose_name='last login'),
|
||||||
|
),
|
||||||
|
migrations.AddField(
|
||||||
|
model_name='user',
|
||||||
|
name='password',
|
||||||
|
field=models.CharField(verbose_name='password', default='!', max_length=128),
|
||||||
|
preserve_default=False,
|
||||||
|
),
|
||||||
|
migrations.RunPython(
|
||||||
|
move_passwords,
|
||||||
|
reverse_code=migrations.RunPython.noop),
|
||||||
|
]
|
18
users/migrations/0018_auto_20160707_0115.py
Normal file
18
users/migrations/0018_auto_20160707_0115.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
|
from django.db import models, migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('users', '0017_auto_20160707_0105'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.RemoveField(
|
||||||
|
model_name='user',
|
||||||
|
name='pwd_ssha',
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue