mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-25 01:12:16 +00:00
FIX: Allow null on nickname CharField
Allowing null is required on a unique CharField
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
# Generated by Django 2.0.13 on 2020-03-02 17:53
|
||||
# Generated by Django 2.0.13 on 2020-03-03 19:40
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
@@ -13,6 +13,6 @@ class Migration(migrations.Migration):
|
||||
migrations.AddField(
|
||||
model_name='asset',
|
||||
name='nickname',
|
||||
field=models.CharField(blank=True, max_length=20, unique=True),
|
||||
field=models.CharField(blank=True, max_length=20, null=True, unique=True),
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user