summaryrefslogtreecommitdiff
path: root/src/caas/migrations/0013_auto_20200728_2359.py
diff options
context:
space:
mode:
authorckonstanski <kostcarl@isu.edu>2026-07-30 18:17:14 -0600
committerckonstanski <kostcarl@isu.edu>2026-07-30 18:17:14 -0600
commit640ff61422bc0ee3966941b93d9889ddbbd38d77 (patch)
treeabf1c08f5d38ee53ec8b29dc4f425722517505e6 /src/caas/migrations/0013_auto_20200728_2359.py
parent22dae02a86c1fce71091bfa5289cf99abba1b217 (diff)
more filesHEADmaster
Diffstat (limited to 'src/caas/migrations/0013_auto_20200728_2359.py')
-rw-r--r--src/caas/migrations/0013_auto_20200728_2359.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/caas/migrations/0013_auto_20200728_2359.py b/src/caas/migrations/0013_auto_20200728_2359.py
new file mode 100644
index 0000000..83e8998
--- /dev/null
+++ b/src/caas/migrations/0013_auto_20200728_2359.py
@@ -0,0 +1,31 @@
+# Generated by Django 3.0.8 on 2020-07-29 05:59
+
+from django.db import migrations, models
+import django.db.models.deletion
+
+
+class Migration(migrations.Migration):
+
+ dependencies = [
+ ('caas', '0012_auto_20200721_1540'),
+ ]
+
+ operations = [
+ migrations.CreateModel(
+ name='PatchSchedule',
+ fields=[
+ ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
+ ('date_scheduled', models.DateTimeField(blank=True, null=True)),
+ ('date_completed', models.DateTimeField(blank=True, null=True)),
+ ('date_last_failed', models.DateTimeField(blank=True, null=True)),
+ ('kirke_ticket_number', models.CharField(blank=True, max_length=255, null=True)),
+ ('kirke_ticket_status', models.CharField(blank=True, max_length=255, null=True)),
+ ('kirke_ticket_completed', models.DateTimeField(blank=True, null=True)),
+ ('cluster', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='caas.Cluster')),
+ ],
+ ),
+ migrations.AddConstraint(
+ model_name='patchschedule',
+ constraint=models.UniqueConstraint(fields=('cluster_id',), name='unique_patchschedule'),
+ ),
+ ]