# Generated by Django 4.0.6 on 2022-09-01 16:21 from django.db import migrations, models class Migration(migrations.Migration): initial = True dependencies = [ ] operations = [ migrations.CreateModel( name='ArticleIgescom', fields=[ ('id_article_igescom', models.AutoField(primary_key=True, serialize=False)), ('code_taxe', models.CharField(max_length=200, null=True)), ('code_ta', models.CharField(max_length=200, null=True)), ('code_sr', models.CharField(max_length=200, null=True)), ('stock_min_gen', models.FloatField(null=True)), ('stock_max_gen', models.FloatField(null=True)), ('stock_phy_gen', models.FloatField(null=True)), ('code_ma', models.FloatField(null=True)), ('code_fa', models.CharField(max_length=200, null=True)), ('code_ray', models.CharField(max_length=200, null=True)), ('ref_dilicom_article', models.CharField(max_length=200, null=True)), ('nom_article', models.CharField(max_length=200, null=True)), ('description_article', models.TextField(null=True)), ('poids_article', models.IntegerField(null=True)), ('code_EAN13_article', models.CharField(max_length=200, null=True)), ('disponibilite_article', models.CharField(max_length=200, null=True)), ('prix_HT_dilicom', models.FloatField(null=True)), ('prix_TTC_article', models.FloatField(null=True)), ('prix_article_igescom', models.FloatField(null=True)), ('date_creation_article', models.DateField(default='2022-09-01', null=True)), ('collection_article', models.CharField(max_length=200, null=True)), ], ), ]