Jan Dittberner
4af1a39ca4
- update dependencies - fix deprecation warnings - fix tests - skip some tests that need more work - reformat changed code with isort and black
19 lines
458 B
Python
19 lines
458 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("hostingpackages", "0004_customerhostingpackagedomain"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="diskspaceoption",
|
|
options={},
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name="customerdiskspaceoption",
|
|
unique_together=set([]),
|
|
),
|
|
]
|