Skip to content

Commit b7e8d46

Browse files
committed
Fix collapsible, expiry update, role in invie form and other small issues
1 parent 8edc6a0 commit b7e8d46

1 file changed

Lines changed: 29 additions & 0 deletions

File tree

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Generated by Django 4.2.20 on 2025-05-13 13:23
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
dependencies = [
8+
("funds", "0126_alter_coapplicant_role"),
9+
]
10+
11+
operations = [
12+
migrations.AddField(
13+
model_name="coapplicantinvite",
14+
name="invited_at",
15+
field=models.DateTimeField(blank=True, null=True),
16+
),
17+
migrations.AddField(
18+
model_name="coapplicantinvite",
19+
name="role",
20+
field=models.CharField(
21+
choices=[
22+
("read_only", "Read Only"),
23+
("comment", "Comment"),
24+
("full_access", "Full Access"),
25+
],
26+
default="read_only",
27+
),
28+
),
29+
]

0 commit comments

Comments
 (0)