1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Generated by Django 3.1.1 on 2020-09-08 04:15
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='AutomationStatus',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('playbook_name', models.CharField(blank=True, max_length=255)),
('status', models.CharField(blank=True, max_length=50)),
('ilo_host_address', models.CharField(blank=True, max_length=255)),
('cluster_name', models.CharField(blank=True, max_length=255)),
('created_at', models.DateTimeField(auto_now_add=True)),
],
),
]
|