0001_initial.py 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. from django.db import migrations, models
  4. import netfields.fields
  5. import coin.validation
  6. class Migration(migrations.Migration):
  7. dependencies = [
  8. ('contenttypes', '0002_remove_content_type_name'),
  9. ('configuration', '0004_auto_20161015_1837'),
  10. ]
  11. operations = [
  12. migrations.CreateModel(
  13. name='Console',
  14. fields=[
  15. ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
  16. ('protocol', models.CharField(max_length=256, verbose_name='protocole', choices=[('VNC', 'VNC')])),
  17. ('domain', models.CharField(max_length=256, null=True, verbose_name='nom de domaine', blank=True)),
  18. ('port', models.IntegerField(null=True, verbose_name='port')),
  19. ('password_link', models.URLField(help_text='Lien \xe0 usage unique (d\xe9truit apr\xe8s ouverture)', null=True, verbose_name='Mot de passe', blank=True)),
  20. ],
  21. options={
  22. 'verbose_name': 'Console',
  23. },
  24. ),
  25. migrations.CreateModel(
  26. name='FingerPrint',
  27. fields=[
  28. ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
  29. ('algo', models.CharField(max_length=256, verbose_name='algo', choices=[('ED25519', 'ED25519'), ('RSA', 'RSA'), ('ECDSA', 'ECDSA')])),
  30. ('fingerprint', models.CharField(max_length=256, verbose_name='empreinte')),
  31. ('length', models.IntegerField(null=True, verbose_name='longueur de la cl\xe9')),
  32. ('polymorphic_ctype', models.ForeignKey(related_name='polymorphic_vps.fingerprint_set+', editable=False, to='contenttypes.ContentType', null=True)),
  33. ],
  34. options={
  35. 'verbose_name': 'Empreinte',
  36. },
  37. ),
  38. migrations.CreateModel(
  39. name='VPSConfiguration',
  40. fields=[
  41. ('configuration_ptr', models.OneToOneField(parent_link=True, auto_created=True, primary_key=True, serialize=False, to='configuration.Configuration')),
  42. ('activated', models.BooleanField(default=False, verbose_name='activ\xe9')),
  43. ('ipv4_endpoint', netfields.fields.InetAddressField(validators=[coin.validation.validate_v4], max_length=39, blank=True, help_text='Adresse IPv4 utilis\xe9e par d\xe9faut sur le VPS', null=True, verbose_name='IPv4')),
  44. ('ipv6_endpoint', netfields.fields.InetAddressField(validators=[coin.validation.validate_v6], max_length=39, blank=True, help_text='Adresse IPv6 utilis\xe9e par d\xe9faut sur le VPS', null=True, verbose_name='IPv6')),
  45. ('console', models.ForeignKey(verbose_name='console', blank=True, to='vps.Console', null=True)),
  46. ],
  47. options={
  48. 'verbose_name': 'VPS',
  49. },
  50. bases=('configuration.configuration',),
  51. ),
  52. migrations.AddField(
  53. model_name='fingerprint',
  54. name='vps',
  55. field=models.ForeignKey(verbose_name='vps', to='vps.VPSConfiguration'),
  56. ),
  57. ]