works
This commit is contained in:
23
markt/migrations/0004_auto_20200524_1506.py
Normal file
23
markt/migrations/0004_auto_20200524_1506.py
Normal file
@ -0,0 +1,23 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:06
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0003_factuur_orders'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='factuur',
|
||||
name='Subtotal',
|
||||
field=models.FloatField(blank=True, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='factuur',
|
||||
name='total',
|
||||
field=models.FloatField(blank=True, null=True),
|
||||
),
|
||||
]
|
17
markt/migrations/0005_remove_order_factuur_id.py
Normal file
17
markt/migrations/0005_remove_order_factuur_id.py
Normal file
@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:10
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0004_auto_20200524_1506'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='order',
|
||||
name='Factuur_ID',
|
||||
),
|
||||
]
|
20
markt/migrations/0006_order_factuur_id.py
Normal file
20
markt/migrations/0006_order_factuur_id.py
Normal file
@ -0,0 +1,20 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:13
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0005_remove_order_factuur_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='order',
|
||||
name='Factuur_ID',
|
||||
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.PROTECT, to='markt.Factuur'),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
17
markt/migrations/0007_remove_order_factuur_id.py
Normal file
17
markt/migrations/0007_remove_order_factuur_id.py
Normal file
@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:14
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0006_order_factuur_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='order',
|
||||
name='Factuur_ID',
|
||||
),
|
||||
]
|
25
markt/migrations/0008_auto_20200524_1522.py
Normal file
25
markt/migrations/0008_auto_20200524_1522.py
Normal file
@ -0,0 +1,25 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:22
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.db.models.deletion
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0007_remove_order_factuur_id'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='order',
|
||||
name='Factuur_ID',
|
||||
field=models.ForeignKey(default=1, on_delete=django.db.models.deletion.PROTECT, to='markt.Factuur'),
|
||||
preserve_default=False,
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='factuur',
|
||||
name='Orders',
|
||||
field=models.ManyToManyField(blank=True, null=True, to='markt.Order'),
|
||||
),
|
||||
]
|
17
markt/migrations/0009_remove_factuur_orders.py
Normal file
17
markt/migrations/0009_remove_factuur_orders.py
Normal file
@ -0,0 +1,17 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:28
|
||||
|
||||
from django.db import migrations
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0008_auto_20200524_1522'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='factuur',
|
||||
name='Orders',
|
||||
),
|
||||
]
|
22
markt/migrations/0010_auto_20200524_1530.py
Normal file
22
markt/migrations/0010_auto_20200524_1530.py
Normal file
@ -0,0 +1,22 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-24 18:30
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0009_remove_factuur_orders'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='order',
|
||||
name='Factuur_ID',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='factuur',
|
||||
name='Orders',
|
||||
field=models.ManyToManyField(blank=True, null=True, to='markt.Order'),
|
||||
),
|
||||
]
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user