Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit a03c2f9

Browse files
chore: Create migration release 25.1.10 (#472)
* chore: Create migration release 25.1.10 * reformat
1 parent 99581a7 commit a03c2f9

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Generated by Django 4.2.16 on 2025-01-10 19:21
2+
3+
from django.db import migrations
4+
5+
6+
def update_version(apps, schema):
7+
Constants = apps.get_model("core", "Constants")
8+
version = Constants.objects.get(key="version")
9+
version.value = "25.1.10"
10+
version.save()
11+
12+
13+
class Migration(migrations.Migration):
14+
dependencies = [
15+
("core", "0061_increment_version"),
16+
]
17+
18+
operations = [migrations.RunPython(update_version)]

0 commit comments

Comments
 (0)