Skip to content

Commit d0008f6

Browse files
committed
Add django 1.7 migration for modified slot length
1 parent b2724d8 commit d0008f6

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
from __future__ import unicode_literals
3+
4+
from django.db import models, migrations
5+
6+
7+
class Migration(migrations.Migration):
8+
9+
dependencies = [
10+
('cms', '0001_initial'),
11+
]
12+
13+
operations = [
14+
migrations.AlterField(
15+
model_name='placeholder',
16+
name='slot',
17+
field=models.CharField(verbose_name='slot', max_length=255, editable=False, db_index=True),
18+
),
19+
]

0 commit comments

Comments
 (0)