added missing migrations
This commit is contained in:
parent
3e84c036f7
commit
755e313c61
1 changed files with 26 additions and 0 deletions
|
|
@ -0,0 +1,26 @@
|
|||
# Generated by Django 6.0.3 on 2026-04-20 12:07
|
||||
|
||||
import django.core.validators
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
("webui", "0004_alter_borgrepository_key_alter_borgrepository_name"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name="borgrepository",
|
||||
name="key",
|
||||
field=models.TextField(
|
||||
validators=[
|
||||
django.core.validators.RegexValidator(
|
||||
"^(ssh\\-rsa|ecdsa\\-sha2\\-nistp256|ssh\\-ed25519) ([a-zA-Z0-9\\+/=]+)( ([\\S ]*))?$",
|
||||
message="not a valid SSH public key.",
|
||||
)
|
||||
]
|
||||
),
|
||||
),
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue