Skip to content

Commit

Permalink
add migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jochenklar committed Feb 4, 2017
1 parent 327ad82 commit 4cf5ea1
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions apps/domain/migrations/0029_meta.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-02-04 13:00
from __future__ import unicode_literals

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('domain', '0028_path'),
]

operations = [
migrations.AlterField(
model_name='attributeentity',
name='path',
field=models.CharField(db_index=True, help_text='The path part of the URI of this attribute/entity (auto-generated).', max_length=512, verbose_name='Path'),
),
]

0 comments on commit 4cf5ea1

Please sign in to comment.