Skip to content
Snippets Groups Projects
Unverified Commit 320d6f1d authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add migration.

parent 0c4032db
No related branches found
No related tags found
No related merge requests found
# Generated by Django 2.2.3 on 2019-07-24 21:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('chronos', '0001_initial'),
]
operations = [
migrations.AlterField(
model_name='subject',
name='abbrev',
field=models.CharField(max_length=10, unique=True, verbose_name='Abbreviation of subject in timetable'),
),
migrations.AlterField(
model_name='subject',
name='name',
field=models.CharField(max_length=30, unique=True, verbose_name='Long name of subject'),
),
migrations.AlterUniqueTogether(
name='timeperiod',
unique_together={('weekday', 'period')},
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment