mirror of
https://github.com/evennia/evennia.git
synced 2026-04-02 14:07:16 +02:00
20 lines
500 B
Python
20 lines
500 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
|
|
from django.db import models, migrations
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("objects", "0001_initial"), ("comms", "0001_initial")]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="msg",
|
|
name="db_hide_from_objects",
|
|
field=models.ManyToManyField(
|
|
related_name="hide_from_objects_set", null=True, to="objects.ObjectDB"
|
|
),
|
|
preserve_default=True,
|
|
)
|
|
]
|