All checks were successful
Build And Test / build-and-push (push) Successful in 1m57s
19 lines
467 B
Python
19 lines
467 B
Python
# Generated by Django 4.2.14 on 2025-05-20 04:18
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('users', '0005_customuser_last_used_at'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='customuser',
|
|
name='encrypted_private_key_name',
|
|
field=models.CharField(blank=True, max_length=100, null=True, verbose_name='SSH 키 이름'),
|
|
),
|
|
]
|