19 lines
383 B
Python
19 lines
383 B
Python
|
|
# Generated by Django 4.1b1 on 2022-07-20 05:50
|
||
|
|
|
||
|
|
from django.db import migrations, models
|
||
|
|
|
||
|
|
|
||
|
|
class Migration(migrations.Migration):
|
||
|
|
|
||
|
|
dependencies = [
|
||
|
|
("board", "0001_initial"),
|
||
|
|
]
|
||
|
|
|
||
|
|
operations = [
|
||
|
|
migrations.AddField(
|
||
|
|
model_name="post",
|
||
|
|
name="tripcode",
|
||
|
|
field=models.CharField(blank=True, max_length=10),
|
||
|
|
),
|
||
|
|
]
|