forked from 0x2620/pandora
dont enable fulltext index by default, only used with GIN enabled
This commit is contained in:
parent
c0e31e03f2
commit
4d9635ab70
5 changed files with 7 additions and 7 deletions
|
|
@ -25,7 +25,7 @@ class Migration(SchemaMigration):
|
|||
('lightness', self.gf('django.db.models.fields.FloatField')(default=0, db_index=True)),
|
||||
('volume', self.gf('django.db.models.fields.FloatField')(default=0, null=True, db_index=True)),
|
||||
('sortvalue', self.gf('django.db.models.fields.CharField')(max_length=1000, null=True, db_index=True)),
|
||||
('findvalue', self.gf('django.db.models.fields.TextField')(null=True, db_index=True)),
|
||||
('findvalue', self.gf('django.db.models.fields.TextField')(null=True, db_index=False)),
|
||||
('subtitles', self.gf('django.db.models.fields.BooleanField')(default=False, db_index=True)),
|
||||
))
|
||||
db.send_create_signal('clip', ['Clip'])
|
||||
|
|
@ -188,4 +188,4 @@ class Migration(SchemaMigration):
|
|||
}
|
||||
}
|
||||
|
||||
complete_apps = ['clip']
|
||||
complete_apps = ['clip']
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue