aboutsummaryrefslogtreecommitdiffstats
path: root/src/resource_inventory/migrations/0020_cloudinitfile.py
blob: 198181c8da9d6e94577735363981fb0eef60192b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Generated by Django 2.2 on 2021-09-07 14:48

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('resource_inventory', '0019_auto_20210701_1947'),
    ]

    operations = [
        migrations.CreateModel(
            name='CloudInitFile',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('text', models.TextField()),
                ('priority', models.IntegerField()),
            ],
        ),
    ]