mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-02 11:18:56 +00:00
11 lines
249 B
SQL
Executable File
11 lines
249 B
SQL
Executable File
#Drop tvrage, tvrage_episodes and tvrage_titles tables if they exist.
|
|
|
|
#Drop tvrage table
|
|
DROP TABLE IF EXISTS tvrage;
|
|
|
|
#Drop tvrage_episodes table
|
|
DROP TABLE IF EXISTS tvrage_episodes;
|
|
|
|
#Drop tvrage_titles table
|
|
DROP TABLE IF EXISTS tvrage_titles;
|