28 lines
885 B
Python
28 lines
885 B
Python
# Generated by Django 4.2.4 on 2025-05-12 16:10
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='GradingSettings',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('report_weight', models.FloatField(default=2)),
|
|
('presentation_weight', models.FloatField(default=1)),
|
|
('objective_weight', models.FloatField(default=3)),
|
|
('R_weight', models.FloatField(default=1)),
|
|
('L_weight', models.FloatField(default=1)),
|
|
('Ph_weight', models.FloatField(default=1)),
|
|
('Pcu_weight', models.FloatField(default=1)),
|
|
],
|
|
),
|
|
]
|