0002_auto_20170803_0350.py 452 B

12345678910111213141516171819
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. class Migration(migrations.Migration):
  5. dependencies = [
  6. ('vps', '0001_initial'),
  7. ]
  8. operations = [
  9. migrations.AlterField(
  10. model_name='vpsconfiguration',
  11. name='console',
  12. field=models.OneToOneField(null=True, blank=True, to='vps.Console', verbose_name='console'),
  13. ),
  14. ]