Remove the index from the search_lyrics column to allow OpenLP to work with a MySQL MyISAM database

bzr-revno: 1581
This commit is contained in:
Jonathan Corwin 2011-05-27 09:21:23 +01:00
commit ee00c84dba
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ def init_schema(url):
Column(u'song_number', types.Unicode(64)),
Column(u'theme_name', types.Unicode(128)),
Column(u'search_title', types.Unicode(255), index=True, nullable=False),
Column(u'search_lyrics', types.UnicodeText, index=True, nullable=False)
Column(u'search_lyrics', types.UnicodeText, nullable=False)
)
# Definition of the "topics" table