ssh key저장 기능 추가
All checks were successful
Build And Test / build-and-push (push) Successful in 1m57s
All checks were successful
Build And Test / build-and-push (push) Successful in 1m57s
This commit is contained in:
18
users/migrations/0004_customuser_encrypted_private_key.py
Normal file
18
users/migrations/0004_customuser_encrypted_private_key.py
Normal file
@ -0,0 +1,18 @@
|
||||
# Generated by Django 4.2.14 on 2025-05-20 03:25
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('users', '0003_alter_customuser_is_active'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='customuser',
|
||||
name='encrypted_private_key',
|
||||
field=models.BinaryField(blank=True, null=True),
|
||||
),
|
||||
]
|
Reference in New Issue
Block a user