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.
20 lines
422 B
Python
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,
|
|
),
|
|
]
|