regluit/api/migrations/0001_initial.py

22 lines
550 B
Python
Raw Normal View History

2015-08-04 16:02:06 +00:00
# -*- coding: utf-8 -*-
2016-07-21 19:38:09 +00:00
from __future__ import unicode_literals
2015-08-04 16:02:06 +00:00
2016-07-21 19:38:09 +00:00
from django.db import migrations, models
2015-08-04 16:02:06 +00:00
2016-07-21 19:38:09 +00:00
class Migration(migrations.Migration):
2015-08-04 16:02:06 +00:00
2016-07-21 19:38:09 +00:00
dependencies = [
]
2015-08-04 16:02:06 +00:00
2016-07-21 19:38:09 +00:00
operations = [
migrations.CreateModel(
name='AllowedRepo',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('org', models.CharField(max_length=39)),
('repo_name', models.CharField(max_length=100)),
],
),
]