# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
class Migration(migrations.Migration):
dependencies = [
('ldt_utils', '0001_initial'),
('auth', '0006_require_contenttypes_0002'),
]
operations = [
migrations.CreateModel(
name='Branding',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('name', models.CharField(max_length=255, unique=True, null=True, blank=True)),
('group', models.ForeignKey(to='auth.Group', null=True)),
],
),
migrations.CreateModel(
name='Mashup',
fields=[
('id', models.AutoField(verbose_name='ID', serialize=False, auto_created=True, primary_key=True)),
('branding', models.ForeignKey(to='hashcut.Branding')),
('project', models.ForeignKey(to='ldt_utils.Project', null=True)),
],
),
]