mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-09-01 18:58:56 +00:00
4 lines
163 B
SQL
Executable File
4 lines
163 B
SQL
Executable File
# Rename user_series categoryid column to categories_id
|
|
ALTER TABLE user_series
|
|
CHANGE COLUMN categoryid categories_id INT NOT NULL,
|
|
COMMENT 'FK to categories.id'; |