We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e08d306 commit ef937d2Copy full SHA for ef937d2
oauth2_provider/migrations/0001_initial.py
@@ -36,6 +36,8 @@ class Migration(migrations.Migration):
36
('skip_authorization', models.BooleanField(default=False)),
37
('created', models.DateTimeField(auto_now_add=True)),
38
('updated', models.DateTimeField(auto_now=True)),
39
+ ('access_token_expire_seconds', models.IntegerField(default=oauth2_settings.ACCESS_TOKEN_EXPIRE_SECONDS)),
40
+ ('refresh_token_expire_seconds', models.IntegerField(default=oauth2_settings.REFRESH_TOKEN_EXPIRE_SECONDS)),
41
],
42
options={
43
'abstract': False,
0 commit comments