Skip to content

Commit

Permalink
Merge 4a09804 into 68934cb
Browse files Browse the repository at this point in the history
  • Loading branch information
gvn committed Aug 21, 2018
2 parents 68934cb + 4a09804 commit d25cbc6
Show file tree
Hide file tree
Showing 56 changed files with 1,292 additions and 1,635 deletions.
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.14 on 2018-08-06 20:36
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('highlights', '0001_squashed_0007_nullify_homepage'),
]

operations = [
migrations.AddField(
model_name='highlight',
name='commitment',
field=models.CharField(blank=True, help_text='Amount of time required', max_length=256),
),
]
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.14 on 2018-08-06 20:45
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('highlights', '0002_highlight_commitment'),
]

operations = [
migrations.AlterField(
model_name='highlight',
name='commitment',
field=models.CharField(blank=True, help_text='Amount of time required (eg: "30 min commitment")', max_length=256),
),
]
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.14 on 2018-08-06 22:45
from __future__ import unicode_literals

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
('highlights', '0003_auto_20180806_2045'),
]

operations = [
migrations.RemoveField(
model_name='highlight',
name='commitment',
),
]

This file was deleted.

Large diffs are not rendered by default.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

0 comments on commit d25cbc6

Please sign in to comment.