Adds username/localname fields
This commit is contained in:
parent
8dfad68ca7
commit
b2b651a22f
5 changed files with 34 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
# Generated by Django 3.0.2 on 2020-01-28 03:40
|
||||
# Generated by Django 3.0.2 on 2020-01-28 04:47
|
||||
|
||||
from django.conf import settings
|
||||
import django.contrib.auth.models
|
||||
|
@ -37,6 +37,7 @@ class Migration(migrations.Migration):
|
|||
('api_key', models.CharField(blank=True, max_length=255, null=True)),
|
||||
('actor', models.CharField(max_length=255)),
|
||||
('local', models.BooleanField(default=True)),
|
||||
('localname', models.CharField(blank=True, max_length=255, null=True, unique=True)),
|
||||
('created_date', models.DateTimeField(auto_now_add=True)),
|
||||
('updated_date', models.DateTimeField(auto_now=True)),
|
||||
('followers', models.ManyToManyField(to=settings.AUTH_USER_MODEL)),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue