zilencer: Sync name and authentication_methods on RemoteRealm.

This commit is contained in:
Mateusz Mandera
2023-11-29 23:48:46 +01:00
committed by Tim Abbott
parent 4ef6b7cc44
commit 9b1a495e2c
5 changed files with 38 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
# Generated by Django 4.2.7 on 2023-11-29 22:43
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("zilencer", "0039_remoterealm_org_type"),
]
operations = [
migrations.AddField(
model_name="remoterealm",
name="authentication_methods",
field=models.JSONField(default=dict),
),
migrations.AddField(
model_name="remoterealm",
name="name",
field=models.TextField(default=""),
),
]