blob: 649215886a4cb6065ec48dddc1e668d5da470ac8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Generated by Django 4.1.8 on 2023-04-21 08:20
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("instruments", "0001_initial"),
]
operations = [
migrations.AddField(
model_name="subinstrument",
name="short",
field=models.CharField(blank=True, max_length=10, null=True),
),
]
|