Skip to content

Commit

Permalink
Added migration for chat notification update
Browse files Browse the repository at this point in the history
  • Loading branch information
dlareau committed Apr 24, 2020
1 parent 1185223 commit 97a6472
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions huntserver/migrations/0057_auto_20200424_1159.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Generated by Django 2.2.11 on 2020-04-24 15:59

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('huntserver', '0056_auto_20200418_1151'),
]

operations = [
migrations.RemoveField(
model_name='team',
name='last_received_message',
),
migrations.RemoveField(
model_name='team',
name='last_seen_message',
),
migrations.AddField(
model_name='team',
name='num_waiting_messages',
field=models.IntegerField(default=0, help_text='The number of unseen messages a team has waiting'),
),
]

0 comments on commit 97a6472

Please sign in to comment.