mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 00:49:16 +02:00
23 lines
651 B
Python
23 lines
651 B
Python
# Generated by Django 3.0.8 on 2020-07-18 07:41
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0018_auto_20200705_0829'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='grant',
|
|
name='code_challenge',
|
|
field=models.CharField(blank=True, default='', max_length=128),
|
|
),
|
|
migrations.AddField(
|
|
model_name='grant',
|
|
name='code_challenge_method',
|
|
field=models.CharField(blank=True, choices=[('plain', 'plain'), ('S256', 'S256')], default='', max_length=10),
|
|
),
|
|
]
|