Skip to content

Commit 05fc464

Browse files
committed
Add a migration
1 parent b7d219a commit 05fc464

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Generated by Django 3.2.6 on 2021-08-17 12:27
2+
3+
from django.db import migrations, models
4+
5+
6+
class Migration(migrations.Migration):
7+
8+
dependencies = [
9+
("msgs", "0009_alter_participant_kind"),
10+
]
11+
12+
operations = [
13+
migrations.AlterField(
14+
model_name="message",
15+
name="available_to_sender",
16+
field=models.BooleanField(
17+
default=True,
18+
help_text="The message is also encrypted with the sender's public key. \n You need to select this to be able to see the data of your message.",
19+
verbose_name="Message is available to sender",
20+
),
21+
),
22+
]

0 commit comments

Comments
 (0)