# Generated by Django 4.2.5 on 2023-12-14 04:52

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

    dependencies = [
        ('especies', '0034_remove_porcentagemcoleta_especie_and_more'),
    ]

    operations = [
        migrations.CreateModel(
            name='ProducaoMudas',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('beneficiamento_sementes', models.TextField(blank=True, max_length=800)),
                ('substrato_muda', models.TextField(blank=True, max_length=800)),
                ('desenvolvimento_muda_viveiro', models.CharField(blank=True, max_length=100)),
                ('numero_sementes_por_kg', models.PositiveIntegerField(blank=True, null=True)),
                ('armazenamento', models.CharField(blank=True, max_length=250)),
                ('semeadura', models.CharField(blank=True, max_length=100)),
                ('nivel_sombreamento_muda_viveiro', models.DecimalField(blank=True, decimal_places=2, max_digits=5, null=True)),
                ('especie', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='especies.especies')),
            ],
        ),
        migrations.CreateModel(
            name='PorcentagemColeta',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('valor_minimo', models.DecimalField(decimal_places=0, max_digits=5)),
                ('valor_maximo', models.DecimalField(decimal_places=0, max_digits=5)),
                ('descricao', models.CharField(max_length=100)),
                ('especie', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='especies.especies')),
            ],
        ),
        migrations.CreateModel(
            name='PeriodoColeta',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('bioma_nome', models.CharField(max_length=150)),
                ('mes_inicio', models.CharField(max_length=150)),
                ('mes_fim', models.CharField(max_length=150)),
                ('especie', models.ForeignKey(null=True, on_delete=django.db.models.deletion.CASCADE, to='especies.especies')),
            ],
        ),
    ]
