# Generated by Django 2.2.1 on 2019-05-10 13:07 from django.db import migrations, models import django.utils.timezone class Migration(migrations.Migration): dependencies = [ ('instance', '0002_auto_20190502_1341'), ] operations = [ migrations.AddField( model_name='instance', name='deleted', field=models.BooleanField(default=False, help_text='Indicates if the instance is ready for garbage collection'), ), migrations.AddField( model_name='instance', name='time_of_delete', field=models.DateTimeField(default=django.utils.timezone.now, help_text='After this point in time, the instance will be deleted!'), preserve_default=False, ), migrations.AddField( model_name='instance', name='time_of_suspend', field=models.DateTimeField(default=django.utils.timezone.now, help_text='After this point in time, the instance will be suspended'), preserve_default=False, ), migrations.AlterField( model_name='instance', name='access_method', field=models.CharField(choices=[('rdp', 'Remote Desktop Protocol'), ('ssh', 'Secure Shell')], help_text='Primary remote access method', max_length=10), ), migrations.AlterField( model_name='instance', name='lease', field=models.CharField(choices=[('shortlab', 'Short laboratory'), ('lab', 'Laboratory'), ('project', 'Project')], help_text='Expiration method', max_length=50), ), migrations.AlterField( model_name='instance', name='password', field=models.CharField(help_text='Original password of the instance', max_length=50), ), ]