You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
1.1 KiB

# -*- coding: utf-8 -*-
# Generated by Django 1.9 on 2017-06-09 19:28
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='BuildRelease',
fields=[
('id', models.AutoField(auto_created=True,
primary_key=True,
serialize=False,
verbose_name='ID')),
('uuid', models.CharField(max_length=64, unique=True)),
('start_date', models.DateTimeField(auto_now_add=True)),
('tag', models.CharField(max_length=50, null=True)),
('branch', models.CharField(max_length=50)),
('release', models.CharField(db_index=True, max_length=50)),
('distribution', models.CharField(max_length=50)),
('projects', models.TextField(null=False)),
],
),
]