19 lines
400 B
Python
19 lines
400 B
Python
|
# Generated by Django 3.0.6 on 2020-05-26 13:37
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('markt', '0013_factuur_date'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name='factuur',
|
||
|
name='Orders',
|
||
|
field=models.ManyToManyField(blank=True, to='markt.Order'),
|
||
|
),
|
||
|
]
|