# Generated by Django 4.0.5 on 2022-07-04 13:08

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='DisputeModel',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('dispute', models.CharField(max_length=255)),
                ('reference', models.CharField(max_length=24)),
		    ('material', models.CharField(max_length=44)),
		    ('supplier', models.CharField(max_length=144)),
                ('area_of_dispute', models.CharField(choices=[('SAMPLING', 'SAMPLING'), ('ANALYSIS', 'ANALYSIS'), ('CHECKING', 'CHECKING'), ('APPROVAL', 'APPROVAL'), ('USAGE', 'USAGE')], default='SAMPLING', max_length=12)),
                ('status', models.CharField(choices=[('OPEN', 'OPEN'), ('PENDING', 'PENDING'), ('CLOSED', 'CLOSED')], default='OPEN', max_length=12)),
                ('created_by', models.CharField(max_length=24)),
                ('datetime_created', models.DateTimeField(auto_now_add=True)),
            ],
        ),
    ]
