20 lines
458 B
Python
20 lines
458 B
Python
|
# Generated by Django 4.2.1 on 2023-08-25 18:52
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
("guild", "0013_npc_playsession_npcs"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AlterField(
|
||
|
model_name="playsession",
|
||
|
name="npcs",
|
||
|
field=models.ManyToManyField(
|
||
|
blank=True, to="guild.npc", verbose_name="npcs"
|
||
|
),
|
||
|
),
|
||
|
]
|