mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 15:21:01 +00:00
19 lines
385 B
Python
19 lines
385 B
Python
|
# Generated by Django 4.1.7 on 2023-03-06 21:26
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("users", "0013_stator_indexes"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="domain",
|
||
|
name="notes",
|
||
|
field=models.TextField(blank=True, null=True),
|
||
|
),
|
||
|
]
|