Add index to typeclass path. Closes #1975

This commit is contained in:
Tehom 2019-10-25 08:33:14 -04:00
parent 0778ba1aac
commit 19d9811de2
5 changed files with 85 additions and 0 deletions

View file

@ -0,0 +1,23 @@
# Generated by Django 2.2.6 on 2019-10-25 12:31
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('accounts', '0008_auto_20190128_1820'),
]
operations = [
migrations.AlterField(
model_name='accountdb',
name='db_typeclass_path',
field=models.CharField(db_index=True, help_text="this defines what 'type' of entity this is. This variable holds a Python path to a module with a valid Evennia Typeclass.", max_length=255, null=True, verbose_name='typeclass'),
),
migrations.AlterField(
model_name='accountdb',
name='last_name',
field=models.CharField(blank=True, max_length=150, verbose_name='last name'),
),
]