forked from anexia-it/django-rest-passwordreset
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path0002_pk_migration.py
102 lines (85 loc) · 2.95 KB
/
0002_pk_migration.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import django
import django.db.models.deletion
from django.db import migrations, models
def populate_auto_incrementing_pk_field(apps, schema_editor):
ResetPasswordToken = apps.get_model(
"django_rest_passwordreset", "ResetPasswordToken"
)
# Generate values for the new id column
for i, o in enumerate(ResetPasswordToken.objects.all()):
o.id = i + 1
o.save()
def get_migrations_for_django_before_21():
return [
# add a new id field (without primary key information)
migrations.AddField(
model_name="resetpasswordtoken",
name="id",
field=models.IntegerField(null=True),
preserve_default=True,
),
# fill the new pk field
migrations.RunPython(
populate_auto_incrementing_pk_field, migrations.RunPython.noop
),
# add primary key information to id field
migrations.AlterField(
model_name="resetpasswordtoken",
name="id",
field=models.AutoField(primary_key=True, serialize=False),
),
# remove primary key information from 'key' field
migrations.AlterField(
model_name="resetpasswordtoken",
name="key",
field=models.CharField(
db_index=True, max_length=64, unique=True, verbose_name="Key"
),
),
]
def get_migrations_for_django_21_and_newer():
return [
# remove primary key information from 'key' field
migrations.AlterField(
model_name="resetpasswordtoken",
name="key",
field=models.CharField(
db_index=True,
primary_key=False,
max_length=64,
unique=True,
verbose_name="Key",
),
),
# add a new id field
migrations.AddField(
model_name="resetpasswordtoken",
name="id",
field=models.AutoField(primary_key=True, serialize=False),
preserve_default=False,
),
migrations.RunPython(
populate_auto_incrementing_pk_field, migrations.RunPython.noop
),
]
def get_migrations_based_on_django_version():
"""
Returns the proper migrations based on the current Django Version
Unfortunatley, Django 2.1 introduced a breaking change with switching PK from one model to another, see
https://code.djangoproject.com/ticket/29790
:return:
"""
django_version = django.VERSION
if (django_version[0] >= 2 and django_version[1] >= 1) or django_version[0] >= 3:
return get_migrations_for_django_21_and_newer()
return get_migrations_for_django_before_21()
class Migration(migrations.Migration):
dependencies = [
(
"django_rest_passwordreset",
"0001_initial",
),
]
operations = get_migrations_based_on_django_version()