Skip to content

Commit

Permalink
Adding migrations to fix #125
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastian-code committed Oct 17, 2017
1 parent 538f8d9 commit 1e106c3
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions bootcamp/articles/migrations/0006_auto_20171017_1720.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-10-17 17:20
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('articles', '0005_auto_20170726_1222'),
]

operations = [
migrations.AlterField(
model_name='article',
name='title',
field=models.CharField(max_length=255, unique=True),
),
]

0 comments on commit 1e106c3

Please sign in to comment.