Skip to content

Commit 17f0ed8

Browse files
committed
Adding missing migrations to develop
1 parent abf642f commit 17f0ed8

File tree

3 files changed

+77
-0
lines changed

3 files changed

+77
-0
lines changed
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Generated by Django 5.2.13 on 2026-04-15 07:28
2+
3+
from django.db import migrations, models
4+
5+
import hope.apps.account.fields
6+
7+
8+
class Migration(migrations.Migration):
9+
dependencies = [
10+
("api", "0004_migration"),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name="apitoken",
16+
name="grants",
17+
field=hope.apps.account.fields.ChoiceArrayField(
18+
base_field=models.CharField(
19+
choices=[
20+
("API_READ_ONLY", "API_READ_ONLY"),
21+
("API_RDI_UPLOAD", "API_RDI_UPLOAD"),
22+
("API_RDI_CREATE", "API_RDI_CREATE"),
23+
("API_PROGRAM_CREATE", "API_PROGRAM_CREATE"),
24+
(
25+
"API_BENEFICIARY_TICKET_CREATE",
26+
"API_BENEFICIARY_TICKET_CREATE",
27+
),
28+
("API_GENERIC_IMPORT", "API_GENERIC_IMPORT"),
29+
],
30+
max_length=255,
31+
),
32+
size=None,
33+
),
34+
),
35+
]
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Generated by Django 5.2.13 on 2026-04-15 07:28
2+
3+
from django.db import migrations
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("core", "0020_migration"),
9+
]
10+
11+
operations = [
12+
migrations.AlterModelOptions(
13+
name="asyncjob",
14+
options={
15+
"permissions": (("debug_job", "Can debug background jobs"),),
16+
"verbose_name": "Asynchronous Job",
17+
"verbose_name_plural": "Asynchronous Jobs",
18+
},
19+
),
20+
]
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 5.2.13 on 2026-04-15 07:28
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("household", "0037_migration"),
9+
]
10+
11+
operations = [
12+
migrations.AlterField(
13+
model_name="household",
14+
name="currency_old",
15+
field=models.CharField(
16+
blank=True,
17+
default="",
18+
help_text="Household currency (legacy, pending removal)",
19+
max_length=250,
20+
),
21+
),
22+
]

0 commit comments

Comments
 (0)