Skip to content

Commit

Permalink
create migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
nsandler1 committed Jan 30, 2023
1 parent d85e20a commit 26e7b83
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions home/migrations/0007_alter_professoralias_alias.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 3.2.4 on 2023-01-30 20:21

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('home', '0006_delete_auditlog'),
]

operations = [
migrations.AlterField(
model_name='professoralias',
name='alias',
field=models.CharField(max_length=100, unique=True),
),
]

0 comments on commit 26e7b83

Please sign in to comment.