Skip to content
Snippets Groups Projects

Fix the oauth toolkit checksum migration

Merged Jonathan Weth requested to merge fix/oauth-checksum-migration into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -26,7 +26,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='oauthaccesstoken',
name='token_checksum',
field=oauth2_provider.models.TokenChecksumField(db_index=True, default='', max_length=64, unique=True, blank=True),
field=oauth2_provider.models.TokenChecksumField(default='', max_length=64, blank=True),
preserve_default=False,
),
migrations.RunPython(forwards_func, migrations.RunPython.noop),
Loading