Skip to content

Commit f559f0f

Browse files
committed
OpenConceptLab/ocl_issues#2121 | migrations for rate plan
1 parent 431ffa8 commit f559f0f

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-03-26 07:49
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
('users', '0033_auto_20250318_0212'),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name='userratelimit',
15+
name='rate_plan',
16+
field=models.CharField(choices=[('standard', 'standard'), ('guest', 'guest')], default='standard', max_length=100),
17+
),
18+
]

0 commit comments

Comments
 (0)