Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Tweak migrations to try to get Travis tests passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
Greg Turner committed Nov 17, 2016
1 parent 44b7915 commit 1f4efef
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 1 deletion.
2 changes: 1 addition & 1 deletion icekit/plugins/links/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Migration(migrations.Migration):

dependencies = [
('fluent_contents', '0003_auto_20161021_1441'),
('fluent_contents', '0001_initial'),
('fluent_pages', '0001_initial'),
('icekit_authors', '0003_auto_20161115_1118'),
('icekit_article', '0005_add_hero'),
Expand Down
24 changes: 24 additions & 0 deletions icekit/tests/migrations/0007_auto_20161118_1044.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('tests', '0006_auto_20161115_1219'),
]

operations = [
migrations.AddField(
model_name='article',
name='boosted_search_terms',
field=models.TextField(blank=True, help_text='Words (space-separated) added here are boosted in relevance for search results increasing the chance of this appearing higher in the search results.'),
),
migrations.AddField(
model_name='article',
name='list_image',
field=models.ImageField(upload_to=b'icekit/listable/list_image/', blank=True, help_text=b"image to use in listings. Default image is used if this isn't given"),
),
]

0 comments on commit 1f4efef

Please sign in to comment.