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']
|
||||
|
|
|
@ -51,7 +51,7 @@ class Migration(SchemaMigration):
|
|||
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
|
||||
('item', self.gf('django.db.models.fields.related.ForeignKey')(related_name='find', to=orm['item.Item'])),
|
||||
('key', self.gf('django.db.models.fields.CharField')(max_length=200, db_index=True)),
|
||||
('value', self.gf('django.db.models.fields.TextField')(db_index=True, blank=True)),
|
||||
('value', self.gf('django.db.models.fields.TextField')(db_index=True, blank=False)),
|
||||
))
|
||||
db.send_create_signal('item', ['ItemFind'])
|
||||
|
||||
|
|
|
@ -104,7 +104,7 @@ class Migration(DataMigration):
|
|||
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
||||
'item': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'find'", 'to': "orm['item.Item']"}),
|
||||
'key': ('django.db.models.fields.CharField', [], {'max_length': '200', 'db_index': 'True'}),
|
||||
'value': ('django.db.models.fields.TextField', [], {'db_index': 'True', 'blank': 'True'})
|
||||
'value': ('django.db.models.fields.TextField', [], {'db_index': 'False', 'blank': 'True'})
|
||||
},
|
||||
'item.itemsort': {
|
||||
'Meta': {'object_name': 'ItemSort'},
|
||||
|
|
|
@ -104,7 +104,7 @@ class Migration(DataMigration):
|
|||
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
||||
'item': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'find'", 'to': "orm['item.Item']"}),
|
||||
'key': ('django.db.models.fields.CharField', [], {'max_length': '200', 'db_index': 'True'}),
|
||||
'value': ('django.db.models.fields.TextField', [], {'db_index': 'True', 'blank': 'True'})
|
||||
'value': ('django.db.models.fields.TextField', [], {'db_index': 'False', 'blank': 'True'})
|
||||
},
|
||||
'item.itemsort': {
|
||||
'Meta': {'object_name': 'ItemSort'},
|
||||
|
|
|
@ -108,7 +108,7 @@ class Migration(SchemaMigration):
|
|||
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
||||
'item': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'find'", 'to': "orm['item.Item']"}),
|
||||
'key': ('django.db.models.fields.CharField', [], {'max_length': '200', 'db_index': 'True'}),
|
||||
'value': ('django.db.models.fields.TextField', [], {'db_index': 'True', 'blank': 'True'})
|
||||
'value': ('django.db.models.fields.TextField', [], {'db_index': 'False', 'blank': 'True'})
|
||||
},
|
||||
'item.itemsort': {
|
||||
'Meta': {'object_name': 'ItemSort'},
|
||||
|
@ -160,4 +160,4 @@ class Migration(SchemaMigration):
|
|||
}
|
||||
}
|
||||
|
||||
complete_apps = ['item']
|
||||
complete_apps = ['item']
|
||||
|
|
Loading…
Reference in a new issue