##// END OF EJS Templates
Added missing migration for the last index update
neko259 -
r967:8ba6c857 default
parent child Browse files
Show More
@@ -0,0 +1,19 b''
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import models, migrations
5
6
7 class Migration(migrations.Migration):
8
9 dependencies = [
10 ('boards', '0005_remove_thread_replies'),
11 ]
12
13 operations = [
14 migrations.AlterField(
15 model_name='thread',
16 name='bump_time',
17 field=models.DateTimeField(db_index=True),
18 ),
19 ]
General Comments 0
You need to be logged in to leave comments. Login now