You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
('user', models.ForeignKey(help_text='The user who this archive status is for.', on_delete=django.db.models.deletion.CASCADE, related_name='course_archive_statuses', to=settings.AUTH_USER_MODEL)),
21
+
(
22
+
"id",
23
+
models.BigAutoField(
24
+
auto_created=True,
25
+
primary_key=True,
26
+
serialize=False,
27
+
verbose_name="ID",
28
+
),
29
+
),
30
+
(
31
+
"course_id",
32
+
opaque_keys.edx.django.models.CourseKeyField(
33
+
db_index=True,
34
+
help_text="The unique identifier for the course.",
35
+
max_length=255,
36
+
),
37
+
),
38
+
(
39
+
"is_archived",
40
+
models.BooleanField(
41
+
db_index=True,
42
+
default=False,
43
+
help_text="Whether the course is archived.",
44
+
),
45
+
),
46
+
(
47
+
"archive_date",
48
+
models.DateTimeField(
49
+
blank=True,
50
+
help_text="The date and time when the course was archived.",
0 commit comments