mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 18:58:56 +00:00
11 lines
338 B
SQL
Executable File
11 lines
338 B
SQL
Executable File
# This patch will remove column, trigger and index
|
|
|
|
#Drop the trigger
|
|
DROP TRIGGER IF EXISTS insert_MD5;
|
|
|
|
#Drop the indexes
|
|
ALTER TABLE release_comments DROP INDEX ix_releasecomment_text_releaseID;
|
|
ALTER TABLE release_comments DROP INDEX ix_releasecomment_hash_gid;
|
|
|
|
#Drop the text_hash column
|
|
ALTER TABLE release_comments DROP text_hash; |