Autocreate superuser from .env file as well as autogenerate year level and course records

This commit is contained in:
Keannu Christian Bernasol 2023-06-27 15:41:34 +08:00
parent 48f6bee125
commit ceba84acb5
16 changed files with 174 additions and 4 deletions

View file

@ -0,0 +1,23 @@
# Generated by Django 4.2.2 on 2023-06-27 07:31
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('courses', '0001_initial'),
]
operations = [
migrations.RenameField(
model_name='course',
old_name='course_name',
new_name='name',
),
migrations.RenameField(
model_name='course',
old_name='course_shortname',
new_name='shortname',
),
]