fixed stuff
This commit is contained in:
20
markt/migrations/0013_factuur_date.py
Normal file
20
markt/migrations/0013_factuur_date.py
Normal file
@ -0,0 +1,20 @@
|
||||
# Generated by Django 3.0.6 on 2020-05-26 13:06
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.utils.timezone
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('markt', '0012_auto_20200525_0113'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='factuur',
|
||||
name='Date',
|
||||
field=models.DateTimeField(auto_now_add=True, default=django.utils.timezone.now),
|
||||
preserve_default=False,
|
||||
),
|
||||
]
|
18
markt/migrations/0014_auto_20200526_1037.py
Normal file
18
markt/migrations/0014_auto_20200526_1037.py
Normal file
@ -0,0 +1,18 @@
|
||||
# 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'),
|
||||
),
|
||||
]
|
BIN
markt/migrations/__pycache__/0013_factuur_date.cpython-38.pyc
Normal file
BIN
markt/migrations/__pycache__/0013_factuur_date.cpython-38.pyc
Normal file
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user