Skip to content

Commit

Permalink
Fix migration data
Browse files Browse the repository at this point in the history
--HG--
branch : deconstruct
  • Loading branch information
Neil Muller committed Sep 5, 2014
1 parent 0f7eda8 commit 9e3ebb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test_migration/migrations/0001_initial.py
Expand Up @@ -16,7 +16,7 @@ class Migration(migrations.Migration):
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('title', models.CharField(max_length=1024)),
('details', markitup.fields.MarkupField(help_text=b'A markitup field')),
('details', markitup.fields.MarkupField(help_text=b'A markitup field', no_rendered_field=True)),
('_details_rendered', models.TextField(editable=False, blank=True)),
],
options={
Expand Down

0 comments on commit 9e3ebb3

Please sign in to comment.