-
Piotr Gawron authoredPiotr Gawron authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
0024_configurationitem.py 803 B
# -*- coding: utf-8 -*-
# Generated by Django 1.10.3 on 2017-04-04 09:43
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('web', '0023_auto_20170404_1047'),
]
operations = [
migrations.CreateModel(
name='ConfigurationItem',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('type', models.CharField(editable=False, max_length=50, verbose_name=b'Type')),
('name', models.CharField(editable=False, max_length=50, verbose_name=b'Name')),
('value', models.CharField(max_length=50, verbose_name=b'Value')),
],
),
]