Skip to content

Commit c57bfdf

Browse files
committed
Add a missing migration
1 parent ba2a19c commit c57bfdf

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# -*- coding: utf-8 -*-
2+
# Generated by Django 1.9 on 2020-03-20 19:19
3+
from __future__ import unicode_literals
4+
5+
from django.db import migrations
6+
7+
8+
class Migration(migrations.Migration):
9+
10+
dependencies = [
11+
('proposals', '0024_auto_20170610_1857'),
12+
]
13+
14+
operations = [
15+
migrations.AlterIndexTogether(
16+
name='proposalcomment',
17+
index_together=set([('is_spam', 'marked_as_spam_by'), ('commenter', 'is_spam')]),
18+
),
19+
]

0 commit comments

Comments
 (0)