Add nickname field to assets

Seems necessary given all the lights and some of the amps and distros have names :-)
This commit is contained in:
2022-12-11 00:29:30 +00:00
parent e3d8cf8978
commit a4a28a6130
3 changed files with 28 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 3.2.16 on 2022-12-11 00:26
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('assets', '0026_auto_20220526_1623'),
]
operations = [
migrations.AddField(
model_name='asset',
name='nickname',
field=models.CharField(blank=True, max_length=120),
),
]