Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
21 lines
590 B
Python
21 lines
590 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("hostingpackages", "0002_auto_20150118_1149"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="customerhostingpackage",
|
|
name="name",
|
|
field=models.CharField(max_length=128, verbose_name="name"),
|
|
preserve_default=True,
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name="customerhostingpackage",
|
|
unique_together=set([("customer", "name")]),
|
|
),
|
|
]
|