16 lines
383 B
Python
16 lines
383 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('toolshed', '0019_rename_id_storagelocation_internal_id'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='storagelocation',
|
|
name='id',
|
|
field=models.PositiveIntegerField(editable=False, null=True),
|
|
),
|
|
]
|