summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/migrations/0001_initial.py
blob: c81293ce7b178a6eeb7279f1198ecd8ab5a66ee6 (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# -*- coding: utf-8 -*-
# Generated by Django 1.9.9 on 2016-08-17 18:52


import Bcfg2.Server.Plugin.helpers
from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='MetadataClientModel',
            fields=[
                ('hostname', models.CharField(max_length=255, primary_key=True, serialize=False)),
                ('version', models.CharField(max_length=31, null=True)),
            ],
            bases=(models.Model, Bcfg2.Server.Plugin.helpers.PluginDatabaseModel),
        ),
        migrations.CreateModel(
            name='ProbesDataModel',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('hostname', models.CharField(max_length=255)),
                ('probe', models.CharField(max_length=255)),
                ('timestamp', models.DateTimeField(auto_now=True)),
                ('data', models.TextField(null=True)),
            ],
            bases=(models.Model, Bcfg2.Server.Plugin.helpers.PluginDatabaseModel),
        ),
        migrations.CreateModel(
            name='ProbesGroupsModel',
            fields=[
                ('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('hostname', models.CharField(max_length=255)),
                ('group', models.CharField(max_length=255)),
            ],
            bases=(models.Model, Bcfg2.Server.Plugin.helpers.PluginDatabaseModel),
        ),
    ]