28 lines
975 B
Python
28 lines
975 B
Python
|
# Generated by Django 3.0.8 on 2020-10-19 05:39
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('auctions', '0005_auto_20201018_2304'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.RemoveField(
|
||
|
model_name='auctionlisting',
|
||
|
name='watchlist',
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='user',
|
||
|
name='watchlist',
|
||
|
field=models.ManyToManyField(blank=True, related_name='watchlist', to='auctions.AuctionListing'),
|
||
|
),
|
||
|
migrations.AlterField(
|
||
|
model_name='auctionlisting',
|
||
|
name='category',
|
||
|
field=models.CharField(choices=[('Fashion', 'Fashion'), ('Electronics', 'Electronics'), ('Home', 'Home'), ('Sports', 'Sports'), ('Toys', 'Toys'), ('Automobile', 'Automobile'), ('Books', 'Books'), ('Video Games', 'Video Games'), ('Other', 'Other')], max_length=64),
|
||
|
),
|
||
|
]
|