57 lines
2.8 KiB
Python
57 lines
2.8 KiB
Python
# Generated by Django 5.0.2 on 2025-06-10 20:05
|
|
|
|
import django.db.models.deletion
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
initial = True
|
|
|
|
dependencies = [
|
|
('instructor', '0001_initial'),
|
|
('schedule', '0003_alter_lesson_options_remove_lesson_lesson_type_and_more'),
|
|
('student', '0001_initial'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.CreateModel(
|
|
name='CourseAnalytics',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('total_students', models.IntegerField(default=0)),
|
|
('average_progress', models.DecimalField(decimal_places=2, default=0, max_digits=5)),
|
|
('completion_rate', models.DecimalField(decimal_places=2, default=0, max_digits=5)),
|
|
('revenue', models.DecimalField(decimal_places=2, default=0, max_digits=10)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('course', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='schedule.course')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='InstructorAnalytics',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('total_lessons', models.IntegerField(default=0)),
|
|
('total_students', models.IntegerField(default=0)),
|
|
('average_rating', models.DecimalField(decimal_places=2, default=5.0, max_digits=3)),
|
|
('completion_rate', models.DecimalField(decimal_places=2, default=0, max_digits=5)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('instructor', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='instructor.instructor')),
|
|
],
|
|
),
|
|
migrations.CreateModel(
|
|
name='StudentAnalytics',
|
|
fields=[
|
|
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
|
|
('total_lessons', models.IntegerField(default=0)),
|
|
('attendance_rate', models.DecimalField(decimal_places=2, default=0, max_digits=5)),
|
|
('average_grade', models.DecimalField(decimal_places=2, default=0, max_digits=3)),
|
|
('created_at', models.DateTimeField(auto_now_add=True)),
|
|
('updated_at', models.DateTimeField(auto_now=True)),
|
|
('student', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='student.student')),
|
|
],
|
|
),
|
|
]
|