blob: df2fa8313e7b1071dd34415bb56f5570a8b0472e [file] [log] [blame]
# -*- coding: utf-8 -*-
# Generated by Django 1.10 on 2017-12-01 00:47
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('dashboard', '0003_auto_20171128_0601'),
]
operations = [
migrations.CreateModel(
name='Request',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('request_title', models.CharField(max_length=250)),
('request_description', models.CharField(max_length=500)),
('request_status', models.CharField(max_length=20)),
('request_comments', models.FileField(upload_to=b'')),
('allocation_type', models.CharField(max_length=100)),
('cpu_hours_requested', models.CharField(max_length=10)),
('cpu_hours_allocated', models.CharField(max_length=10)),
],
),
migrations.RemoveField(
model_name='song',
name='album',
),
migrations.DeleteModel(
name='Album',
),
migrations.DeleteModel(
name='Song',
),
]