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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
xmrauctions/items/migrations/0002_item_whereabouts.py

20 lines
422 B
Python

# Generated by Django 2.2.8 on 2020-01-10 16:57
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('items', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='item',
name='whereabouts',
field=models.CharField(default=0, max_length=100),
preserve_default=False,
),
]