Skip to content
Snippets Groups Projects
Unverified Commit 64ad4163 authored by Abdul Hannan's avatar Abdul Hannan Committed by GitHub
Browse files

Merge pull request #22825 from edx/rename_start_end_in_courseoverview_1

Rename start, end in CourseOverview
parents c8755080 ef7350f3
No related branches found
Tags release-2021-01-28-09.00
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.27 on 2020-01-13 13:55
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('course_overviews', '0017_auto_20191002_0823'),
]
operations = [
migrations.AddField(
model_name='courseoverview',
name='end_date',
field=models.DateTimeField(null=True),
),
migrations.AddField(
model_name='courseoverview',
name='start_date',
field=models.DateTimeField(null=True),
),
migrations.AddField(
model_name='historicalcourseoverview',
name='end_date',
field=models.DateTimeField(null=True),
),
migrations.AddField(
model_name='historicalcourseoverview',
name='start_date',
field=models.DateTimeField(null=True),
),
]
......@@ -54,7 +54,7 @@ class CourseOverview(TimeStampedModel):
app_label = 'course_overviews'
# IMPORTANT: Bump this whenever you modify this model and/or add a migration.
VERSION = 6
VERSION = 7
# Cache entry versioning.
version = IntegerField()
......@@ -68,8 +68,11 @@ class CourseOverview(TimeStampedModel):
display_org_with_default = TextField()
# Start/end dates
# TODO Remove 'start' & 'end' in removing field in column renaming, DE-1822
start = DateTimeField(null=True)
end = DateTimeField(null=True)
start_date = DateTimeField(null=True)
end_date = DateTimeField(null=True)
advertised_start = TextField(null=True)
announcement = DateTimeField(null=True)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment