blob: 8e10acf8b8ae205cf49927fbf26f5557f8c4e60e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2016-08-13 12:50
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dashboard', '0001_initial'),
]
operations = [
migrations.CreateModel(
name='ResourceUtilization',
fields=[
('timestamp', models.DateTimeField(auto_created=True)),
('id', models.AutoField(primary_key=True, serialize=False)),
('pod_status', models.IntegerField()),
],
),
]
|