Skip to content
Snippets Groups Projects
Commit 7010eff4 authored by Albert St. Aubin's avatar Albert St. Aubin
Browse files

Adding migration to update the expiration_period default

parent eeb97318
No related merge requests found
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
import datetime
class Migration(migrations.Migration):
dependencies = [
('entitlements', '0006_courseentitlementsupportdetail_action'),
]
operations = [
migrations.AlterField(
model_name='courseentitlementpolicy',
name='expiration_period',
field=models.DurationField(default=datetime.timedelta(730), help_text=b'Duration in days from when an entitlement is created until when it is expired.'),
),
]
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