mirror of
https://github.com/lemeow125/StudE-Backend.git
synced 2024-11-17 14:29:25 +08:00
19 lines
412 B
Python
19 lines
412 B
Python
|
# Generated by Django 4.2.5 on 2023-09-28 12:25
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('study_groups', '0002_remove_studygroup_active'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='studygroup',
|
||
|
name='name',
|
||
|
field=models.CharField(max_length=48, unique=True),
|
||
|
),
|
||
|
]
|