You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
395 B
Python
19 lines
395 B
Python
# Generated by Django 2.2.8 on 2020-01-10 22:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('sales', '0002_auto_20200107_0910'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='itemsale',
|
|
name='sale_cancelled',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|