2021-12-03 07:50:04 +00:00
|
|
|
# Generated by Django 3.1.13 on 2021-12-07 08:23
|
|
|
|
|
2022-05-07 08:20:12 +00:00
|
|
|
import common.db.fields
|
2021-12-03 07:50:04 +00:00
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
('users', '0036_user_feishu_id'),
|
|
|
|
]
|
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
|
|
|
model_name='user',
|
|
|
|
name='secret_key',
|
2022-05-07 08:20:12 +00:00
|
|
|
field=common.db.fields.EncryptCharField(blank=True, max_length=256, null=True, verbose_name='Secret key'),
|
2021-12-03 07:50:04 +00:00
|
|
|
),
|
|
|
|
]
|