@ -29,8 +29,8 @@ class Migration(migrations.Migration):
|
||||
('organization', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='access.organization', validators=[access.models.TenancyObject.validatate_organization_exists])),
|
||||
],
|
||||
options={
|
||||
'verbose_name': 'ClusterType',
|
||||
'verbose_name_plural': 'ClusterTypes',
|
||||
'verbose_name': 'Cluster Type',
|
||||
'verbose_name_plural': 'Cluster Types',
|
||||
'ordering': ['name'],
|
||||
},
|
||||
),
|
||||
|
@ -0,0 +1,25 @@
|
||||
# Generated by Django 5.0.7 on 2024-08-18 03:57
|
||||
|
||||
import access.fields
|
||||
import django.utils.timezone
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('itim', '0001_initial'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='clustertype',
|
||||
name='created',
|
||||
field=access.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='clustertype',
|
||||
name='modified',
|
||||
field=access.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user