Skip to content

Commit

Permalink
Merge pull request #994 from JJamesWWang/fix/redo-alter-course-migration
Browse files Browse the repository at this point in the history
Migration: Add back alter course to not index school
  • Loading branch information
JJamesWWang committed Apr 8, 2023
2 parents 2a70ba0 + 51c8f0d commit ff76b8e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions timetable/migrations/0040_alter_course_school.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.18 on 2023-04-08 14:38

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("timetable", "0039_auto_20230303_1640"),
]

operations = [
migrations.AlterField(
model_name="course",
name="school",
field=models.CharField(max_length=100),
),
]

0 comments on commit ff76b8e

Please sign in to comment.