# Generated by Django 4.0.5 on 2022-07-04 14:47

from django.db import migrations, models
import django.db.models.deletion
import django.utils.timezone


class Migration(migrations.Migration):

    initial = True

    dependencies = [
        ('frontend', '0005_alter_rawmaterialmodel_material_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='CaramelSpiritModel',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('reference', models.CharField(max_length=25, unique=True)),
                ('supplier', models.CharField(max_length=55)),
                ('sample_description', models.CharField(default='LOCAL SPIRIT CARAMEL', max_length=255)),
                ('date_analyzed', models.DateField(default=django.utils.timezone.now)),
                ('taste_odour', models.CharField(default='TYPICAL & SIMILAT TO U.K. STD', max_length=55)),
                ('trans_520nm', models.FloatField()),
                ('lovibond', models.FloatField()),
                ('acce_stab_test_40_2hrs', models.CharField(default='CLEAR & HAZE FREE', max_length=55)),
                ('acce_stab_test_0_48hrs', models.CharField(default='CLEAR & HAZE FREE', max_length=55)),
                ('ph', models.FloatField()),
                ('comment', models.TextField(blank=True, null=True)),
                ('forms_images_uploaded', models.CharField(blank=True, max_length=255, null=True)),
                ('analysed_by', models.CharField(max_length=25)),
                ('username', models.CharField(max_length=25)),
                ('material_info', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='frontend.rawmaterialmodel')),
            ],
        ),
        migrations.CreateModel(
            name='CaramelAcidModel',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('reference', models.CharField(max_length=25, unique=True)),
                ('supplier', models.CharField(max_length=55)),
                ('sample_description', models.CharField(default='ACID CARAMEL', max_length=255)),
                ('date_analyzed', models.DateField(default=django.utils.timezone.now)),
                ('taste_odour', models.CharField(default='TYPICAL & SIMILAT TO U.K. STD 15461', max_length=55)),
                ('trans_600nm', models.FloatField()),
                ('ph', models.FloatField()),
                ('stability_test_1week', models.CharField(default='CLEAR & HAZE FREE', max_length=55)),
                ('comment', models.TextField(blank=True, null=True)),
                ('forms_images_uploaded', models.CharField(blank=True, max_length=255, null=True)),
                ('analysed_by', models.CharField(max_length=25)),
                ('username', models.CharField(max_length=25)),
                ('material_info', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='frontend.rawmaterialmodel')),
            ],
        ),
    ]
