--- /dev/null
+# Generated by Django 3.2.3 on 2021-12-10 11:20
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('webclass', '0004_auto_20210616_1654'),
+ ]
+
+ operations = [
+ migrations.AddIndex(
+ model_name='webclass',
+ index=models.Index(fields=['status', 'period', 'course'], name='teleforma_w_status_03cc4b_idx'),
+ ),
+ ]
db_table = app_label + '_' + 'webclass'
verbose_name = _('webclass')
verbose_name_plural = _('webclass')
+ indexes = [
+ models.Index(fields=['status', 'period', 'course', ]),
+ ]
def __str__(self):
return "Webclass %d : %s" % (self.id, self.course.title)