22 lines
573 B
Python
22 lines
573 B
Python
|
# -*- coding: utf-8 -*-
|
||
|
from __future__ import unicode_literals
|
||
|
|
||
|
from django.db import models, migrations
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('osusers', '0004_auto_20150104_1751'),
|
||
|
('hostingpackages', '0003_auto_20150118_1221'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='customerhostingpackage',
|
||
|
name='osuser',
|
||
|
field=models.ForeignKey(verbose_name='Operating system user', blank=True, to='osusers.User', null=True),
|
||
|
preserve_default=True,
|
||
|
),
|
||
|
]
|