Add user tripcodes

Users can separate their name and a password with ## to create the
illusion of consistent posting.

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2022-07-20 00:28:02 -07:00
parent 8f4b6d7aea
commit c53111ea60
6 changed files with 54 additions and 7 deletions

View File

@@ -0,0 +1,18 @@
# 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),
),
]