1

signup: add referrer

This commit is contained in:
2024-02-27 18:30:20 +02:00
parent 31ff6d5606
commit 429555c4bd
4 changed files with 24 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
# Generated by Django 5.0.2 on 2024-02-27 16:29
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('signup', '0001_initial'),
]
operations = [
migrations.AddField(
model_name='signup',
name='referrer',
field=models.CharField(blank=True, max_length=255),
),
]