# Generated by Django 4.0.5 on 2022-07-11 14:25

from django.db import migrations, models
import django.utils.timezone


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='FinishedProductModel',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('product', models.CharField(max_length=25)),
                ('blend_number', models.CharField(max_length=25, unique=True)),
                ('date_blended', models.DateField()),
                ('line', models.CharField(choices=[], max_length=25)),
                ('tank_number', models.CharField(blank=True, max_length=25, null=True)),
                ('date_time', models.DateTimeField(default=django.utils.timezone.now)),
                ('appearance', models.CharField(choices=[('DARK', 'DARK'), ('CLEAR & COLOURLESS', 'CLEAR & COLOURLESS'), ('DARK RUM', 'DARK RUM')], max_length=25)),
                ('alcohol_strength', models.FloatField()),
                ('total_acidity', models.FloatField(blank=True, null=True)),
                ('total_ester', models.FloatField(blank=True, null=True)),
                ('total_aldehyde', models.FloatField(blank=True, null=True)),
                ('methanol', models.FloatField(blank=True, null=True)),
                ('furfural', models.FloatField(blank=True, null=True)),
                ('ph', models.FloatField()),
                ('conductivity', models.FloatField()),
                ('tasting_result', models.CharField(max_length=255)),
                ('colour', models.CharField(blank=True, max_length=12, null=True)),
                ('comment', models.TextField(default='FIT FOR HUMAN CONSUMPTION')),
                ('performed_by', models.CharField(max_length=55)),
                ('result', models.CharField(choices=[('PENDING', 'PENDING'), ('PASS', 'PASS'), ('FAIL', 'FAIL'), ('OTHER', 'OTHER')], default='PENDING', max_length=25)),
                ('is_checked', models.BooleanField(default=False)),
                ('checked_comment', models.TextField(blank=True, default='', null=True)),
                ('checked_by', models.CharField(blank=True, max_length=25, null=True)),
                ('checked_by_date', models.DateTimeField(blank=True, null=True)),
                ('username', models.CharField(max_length=55)),
                ('datetime_created', models.DateTimeField(auto_now_add=True)),
                ('forms_images_uploaded', models.TextField(blank=True, null=True)),
            ],
        ),
        migrations.CreateModel(
            name='FinishedProductParametersModel',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('product', models.CharField(max_length=55)),
                ('appearance', models.CharField(max_length=255)),
                ('alcohol_strength', models.CharField(max_length=12)),
                ('total_acidity', models.CharField(max_length=12)),
                ('total_ester', models.CharField(max_length=12)),
                ('total_aldehyde', models.CharField(max_length=12)),
                ('methanol', models.CharField(max_length=12)),
                ('furfural', models.CharField(max_length=12)),
                ('ph', models.CharField(max_length=12)),
                ('conductivity', models.CharField(max_length=12)),
                ('tasting_result', models.CharField(default='DEPEND', max_length=255)),
                ('colour', models.CharField(max_length=12)),
                ('username', models.CharField(max_length=55)),
                ('datetime_created', models.DateTimeField(auto_now_add=True)),
            ],
        ),
    ]
