blob: d3c590127583ee2fa66d2ef8da54440a20d8e79d [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
4from django.db import migrations, models
5
6class Migration(migrations.Migration):
7
8 dependencies = [
9 ('orm', '0016_clone_progress'),
10 ]
11
12 operations = [
13 migrations.CreateModel(
14 name='Distro',
15 fields=[
16 ('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
17 ('up_id', models.IntegerField(default=None, null=True)),
18 ('up_date', models.DateTimeField(default=None, null=True)),
19 ('name', models.CharField(max_length=255)),
20 ('description', models.CharField(max_length=255)),
21 ('layer_version', models.ForeignKey(to='orm.Layer_Version')),
22 ],
23 ),
24 ]
25