# Generated by Django 3.2 on 2021-11-14 01:55

from django.db import migrations, models


class Migration(migrations.Migration):

    initial = True

    dependencies = [
    ]

    operations = [
        migrations.CreateModel(
            name='fichierPublicitaire',
            fields=[
                ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
                ('fichier', models.FileField(blank=True, max_length=10000, upload_to='images/')),
            ],
            options={
                'verbose_name_plural': "Le regie publicitaire d'Ekila radio",
            },
        ),
    ]
