Skip to content

Commit

Permalink
Add migration for semesters
Browse files Browse the repository at this point in the history
  • Loading branch information
chirag-jn committed Dec 26, 2020
1 parent ec523a3 commit 9ea71a5
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions studentportal/migrations/0002_semester_show_to_students.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.0.8 on 2020-12-26 23:39

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('studentportal', '0001_initial'),
]

operations = [
migrations.AddField(
model_name='semester',
name='show_to_students',
field=models.BooleanField(default=True),
),
]

0 comments on commit 9ea71a5

Please sign in to comment.