mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-03 01:39:24 +02:00

-- Fix and Add Missing column -- this update may release a column already exists error in some installations
7 lines
No EOL
258 B
SQL
7 lines
No EOL
258 B
SQL
-- Add Missin column
|
|
-- this update may release a column already exists error in some installations
|
|
|
|
ALTER TABLE `users_extra_info`
|
|
ADD COLUMN `order` INT NOT NULL DEFAULT 0;
|
|
|
|
UPDATE configurations SET version = '10.7', modified = now() WHERE id = 1; |