Skip to content

Commit

Permalink
add missing migration for Secret.search_index
Browse files Browse the repository at this point in the history
  • Loading branch information
Torsten Rehn committed Oct 24, 2015
1 parent 0e90bae commit ede687b
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/teamvault/apps/secrets/migrations/0010_auto_20151024_1116.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import migrations, models
import djorm_pgfulltext.fields


class Migration(migrations.Migration):

dependencies = [
('secrets', '0009_auto_20150322_0949'),
]

operations = [
migrations.AlterField(
model_name='secret',
name='search_index',
field=djorm_pgfulltext.fields.VectorField(),
),
]

0 comments on commit ede687b

Please sign in to comment.