23 lines
504 B
Python
23 lines
504 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('hostingpackages', '0005_auto_20150125_1508'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterModelOptions(
|
||
|
name='userdatabaseoption',
|
||
|
options={},
|
||
|
),
|
||
|
migrations.AlterUniqueTogether(
|
||
|
name='customeruserdatabaseoption',
|
||
|
unique_together=set([]),
|
||
|
),
|
||
|
]
|