Skip to content

Commit ef937d2

Browse files
committed
add new field to migration
1 parent e08d306 commit ef937d2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

oauth2_provider/migrations/0001_initial.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@ class Migration(migrations.Migration):
3636
('skip_authorization', models.BooleanField(default=False)),
3737
('created', models.DateTimeField(auto_now_add=True)),
3838
('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)),
3941
],
4042
options={
4143
'abstract': False,

0 commit comments

Comments
 (0)