19 lines
403 B
Python
19 lines
403 B
Python
|
# Generated by Django 3.0.8 on 2020-10-21 11:57
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('auctions', '0001_initial'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='auctionlisting',
|
||
|
name='closed',
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|