From 9a15dc8bb6b8d23b48f0b5653b48f4d3bb38f94c Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Mon, 30 Aug 2021 21:56:20 -0700 Subject: [PATCH] add migrations for otp key length --- .../migrations/0004_alter_account_totp_key.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 accounts/migrations/0004_alter_account_totp_key.py diff --git a/accounts/migrations/0004_alter_account_totp_key.py b/accounts/migrations/0004_alter_account_totp_key.py new file mode 100644 index 0000000..a655295 --- /dev/null +++ b/accounts/migrations/0004_alter_account_totp_key.py @@ -0,0 +1,18 @@ +# Generated by Django 3.2.6 on 2021-08-31 03:13 + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('accounts', '0003_account_twitter_handle'), + ] + + operations = [ + migrations.AlterField( + model_name='account', + name='totp_key', + field=models.CharField(max_length=32, null=True), + ), + ]