('name',models.CharField(help_text='Required. 64 characters or fewer. Letters, digits and ./-/_ only.',max_length=64,validators=[orchestra.core.validators.validate_username],verbose_name='Name')),
('is_active',models.BooleanField(default=True,help_text='Designates whether this service should be treated as active. ',verbose_name='active')),
('data',jsonfield.fields.JSONField(default={},help_text='Extra information dependent of each service.',verbose_name='data')),
('custom_url',models.URLField(blank=True,help_text='Optional and alternative URL for accessing this service instance. A related website will be automatically configured if needed.',verbose_name='custom URL')),
field=models.URLField(blank=True,help_text='Optional and alternative URL for accessing this service instance. i.e. <tt>https://wiki.mydomain/doku/</tt><br>A related website will be automatically configured if needed.',verbose_name='custom URL'),
),
migrations.AlterField(
model_name='saas',
name='name',
field=models.CharField(help_text='Required. 64 characters or fewer. Letters, digits and ./- only.',max_length=64,validators=[orchestra.core.validators.validate_hostname],verbose_name='Name'),