-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #212 from iragm/in-person-proxy-bidding
In person proxy bidding
- Loading branch information
Showing
13 changed files
with
323 additions
and
178 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
auctions/migrations/0144_auction_date_online_bidding_ends_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Generated by Django 5.0.8 on 2024-09-07 16:23 | ||
|
||
import django.db.models.deletion | ||
from django.conf import settings | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("auctions", "0143_auction_extra_promo_link_auction_extra_promo_text"), | ||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="auction", | ||
name="date_online_bidding_ends", | ||
field=models.DateTimeField(blank=True, null=True, verbose_name="Online bidding ends"), | ||
), | ||
migrations.AddField( | ||
model_name="auction", | ||
name="date_online_bidding_starts", | ||
field=models.DateTimeField(blank=True, null=True, verbose_name="Online bidding opens"), | ||
), | ||
migrations.AddField( | ||
model_name="lot", | ||
name="max_bid_revealed_by", | ||
field=models.ForeignKey( | ||
blank=True, | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="max_bid_revealed_by", | ||
to=settings.AUTH_USER_MODEL, | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="auction", | ||
name="date_end", | ||
field=models.DateTimeField( | ||
blank=True, | ||
help_text="Bidding will end on this date. If last-minute bids are placed, bidding can go up to 1 hour past this time on those lots.", | ||
null=True, | ||
verbose_name="Bidding end date", | ||
), | ||
), | ||
] |
Oops, something went wrong.