mirror of
https://github.com/jfmcbrayer/brutaldon
synced 2024-12-23 13:49:48 +01:00
267e94077f
Currently, this uses anonymous sessions. You log in to your instance, and you get associated with a session. Your client information and account information are persisted (created only if needed, reattached if not). Passwords are never stored, only access tokens.
19 lines
393 B
Python
19 lines
393 B
Python
# Generated by Django 2.0.4 on 2018-04-24 18:24
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('brutaldon', '0003_auto_20180424_1255'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='account',
|
|
name='username',
|
|
field=models.EmailField(max_length=254),
|
|
),
|
|
]
|