Skip to content

Commit

Permalink
sync django 1.7 migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
yakky committed Jan 12, 2015
1 parent 3a2f192 commit 0150c6f
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cms/migrations/0002_auto_20140816_1918.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ class Migration(migrations.Migration):
('meta_description', models.TextField(max_length=155, null=True, help_text='The text displayed in search engines.', blank=True, verbose_name='description')),
('slug', models.SlugField(max_length=255, verbose_name='slug')),
('path', models.CharField(db_index=True, max_length=255, verbose_name='Path')),
('has_url_overwrite', models.BooleanField(default=False, verbose_name='has URL overwrite', db_index=True, editable=False)),
('has_url_overwrite', models.BooleanField(db_index=True, default=False, editable=False, verbose_name='has url overwrite')),
('redirect', models.CharField(max_length=255, null=True, blank=True, verbose_name='redirect')),
('creation_date', models.DateTimeField(default=django.utils.timezone.now, verbose_name='creation date', editable=False)),
('published', models.BooleanField(default=False, verbose_name='is published')),
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('mti_pluginapp', '0001_initial'),
]

operations = [
migrations.AlterField(
model_name='testpluginalphamodel',
name='alpha',
field=models.CharField(max_length=32, default='test plugin alpha', verbose_name='name'),
preserve_default=True,
),
migrations.AlterField(
model_name='testpluginbetamodel',
name='beta',
field=models.CharField(max_length=32, default='test plugin beta', verbose_name='name'),
preserve_default=True,
),
]

0 comments on commit 0150c6f

Please sign in to comment.