10 lines
240 B
MySQL
10 lines
240 B
MySQL
|
|
--
|
||
|
|
-- patch-drop-user-fields.sql
|
||
|
|
--
|
||
|
|
-- T188327. Drop old xx_user and xx_user_text fields, and defaults from xx_actor fields.
|
||
|
|
|
||
|
|
ALTER TABLE /*_*/archive
|
||
|
|
DROP COLUMN ar_user,
|
||
|
|
DROP COLUMN ar_user_text,
|
||
|
|
ALTER COLUMN ar_actor DROP DEFAULT;
|