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
454 B
Python
19 lines
454 B
Python
# -*- coding: utf-8 -*-
|
|
from django.db import migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("hostingpackages", "0005_auto_20150125_1508"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterModelOptions(
|
|
name="userdatabaseoption",
|
|
options={},
|
|
),
|
|
migrations.AlterUniqueTogether(
|
|
name="customeruserdatabaseoption",
|
|
unique_together=set([]),
|
|
),
|
|
]
|