# Generated by Django 3.2.7 on 2022-09-30 08:06

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('portal', '0001_initial'),
    ]

    operations = [
        migrations.CreateModel(
            name='MfgExclusions',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('ndc', models.CharField(blank=True, max_length=11, null=True)),
                ('drug_name', models.CharField(blank=True, max_length=256, null=True)),
                ('excluded', models.CharField(blank=True, max_length=3, null=True)),
                ('manufacturer', models.CharField(blank=True, max_length=64, null=True)),
                ('opa_manuf', models.CharField(blank=True, max_length=128, null=True)),
                ('timestamp', models.DateTimeField(blank=True, null=True)),
            ],
            options={
                'db_table': 'mfg_exclusions',
                'managed': False,
            },
        ),
        migrations.DeleteModel(
            name='MfgExclusions2021Q4',
        ),
    ]
