2015-01-18 13:22:06 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2018-11-19 23:28:40 +01:00
|
|
|
from django.db import migrations, models
|
2015-01-18 13:22:06 +01:00
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
|
|
('osusers', '0004_auto_20150104_1751'),
|
|
|
|
('hostingpackages', '0003_auto_20150118_1221'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='customerhostingpackage',
|
|
|
|
name='osuser',
|
2018-11-19 23:28:40 +01:00
|
|
|
field=models.ForeignKey(
|
|
|
|
verbose_name='Operating system user', blank=True,
|
|
|
|
to='osusers.User', null=True, on_delete=models.CASCADE),
|
2015-01-18 13:22:06 +01:00
|
|
|
preserve_default=True,
|
|
|
|
),
|
|
|
|
]
|