Removed associative entity and fixed relationship between student status and study group

This commit is contained in:
Keannu Christian Bernasol 2023-09-25 21:09:31 +08:00
parent 771300f933
commit 7dc80caee7
23 changed files with 266 additions and 253 deletions

View file

@ -1,4 +1,4 @@
# Generated by Django 4.2.3 on 2023-09-03 09:32
# Generated by Django 4.2.3 on 2023-09-25 13:07
import accounts.models
import django.contrib.auth.models
@ -14,8 +14,8 @@ class Migration(migrations.Migration):
dependencies = [
('semesters', '0001_initial'),
('courses', '0001_initial'),
('auth', '0012_alter_user_first_name_max_length'),
('courses', '0001_initial'),
]
operations = [

View file

@ -1,4 +1,4 @@
# Generated by Django 4.2.3 on 2023-09-03 09:32
# Generated by Django 4.2.3 on 2023-09-25 13:07
from django.db import migrations, models
import django.db.models.deletion
@ -9,9 +9,9 @@ class Migration(migrations.Migration):
initial = True
dependencies = [
('accounts', '0001_initial'),
('year_levels', '0001_initial'),
('subjects', '0001_initial'),
('accounts', '0001_initial'),
('auth', '0012_alter_user_first_name_max_length'),
]