24 lines
554 B
Python
Executable File
24 lines
554 B
Python
Executable File
# 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),
|
|
),
|
|
]
|