Skip to content

Commit

Permalink
Merge pull request #3179 from Eskimon/fix-missing-migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
GerardPaligot committed Nov 10, 2015
2 parents 8ca82f2 + 2650ffd commit a229312
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions zds/forum/migrations/0003_auto_20151110_1145.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('forum', '0002_auto_20150410_1505'),
]

operations = [
migrations.AlterField(
model_name='topic',
name='is_locked',
field=models.BooleanField(default=False, db_index=True, verbose_name=b'Est verrouill\xc3\xa9'),
preserve_default=True,
),
]

0 comments on commit a229312

Please sign in to comment.