Change org_num1 label
This commit is contained in:
parent
e238c5fed3
commit
8a082d2611
2 changed files with 19 additions and 1 deletions
18
app/migrations/0044_alter_organisation_org_num1.py
Normal file
18
app/migrations/0044_alter_organisation_org_num1.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
# Generated by Django 3.2.5 on 2021-11-28 16:32
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0043_auto_20211128_1458'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='organisation',
|
||||
name='org_num1',
|
||||
field=models.AutoField(primary_key=True, serialize=False, verbose_name='ID'),
|
||||
),
|
||||
]
|
|
@ -394,7 +394,7 @@ class Organisation(models.Model):
|
|||
('Architecture, planning & design', 'Architecture, planning & design'),
|
||||
('', ''),
|
||||
)
|
||||
org_num1 = models.AutoField(primary_key=True)
|
||||
org_num1 = models.AutoField(primary_key=True, verbose_name='ID')
|
||||
organisation_search = models.TextField(blank=True, null=True)
|
||||
org_alpha_search = models.TextField(blank=True, null=True)
|
||||
organisation_english = models.CharField(max_length=256, blank=True, null=True)
|
||||
|
|
Loading…
Reference in a new issue