Migrating models, many admin tweaks
This commit is contained in:
parent
a7f1e24c9c
commit
1bdcafcef4
15 changed files with 211 additions and 25 deletions
22
evennia/help/migrations/0004_auto_20210520_2137.py
Normal file
22
evennia/help/migrations/0004_auto_20210520_2137.py
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
# Generated by Django 3.2.3 on 2021-05-20 21:37
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('help', '0003_auto_20190128_1820'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='helpentry',
|
||||
name='db_staff_only',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='helpentry',
|
||||
name='db_date_created',
|
||||
field=models.DateTimeField(auto_now=True, verbose_name='creation date'),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue