mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-31 10:18:55 +00:00
9 lines
281 B
SQL
Executable File
9 lines
281 B
SQL
Executable File
/* Drop the adddate index */
|
|
ALTER TABLE prehash DROP INDEX ix_prehash_adddate;
|
|
|
|
/* Drop the adddate column */
|
|
ALTER TABLE prehash DROP COLUMN adddate;
|
|
|
|
/* Use tmux table to keep the last pre time (unixtime) */
|
|
INSERT IGNORE INTO tmux (setting, value) VALUES ('lastpretime', '0');
|