You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
534 B
24 lines
534 B
# Generated by Django 3.2.25 on 2024-10-04 03:03
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('api', '0002_pledge'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='pledge',
|
|
name='student_id',
|
|
field=models.CharField(max_length=10),
|
|
),
|
|
migrations.AlterField(
|
|
model_name='pledge',
|
|
name='student_name',
|
|
field=models.CharField(max_length=10),
|
|
),
|
|
]
|