8 lines
214 B
SQL
8 lines
214 B
SQL
--
|
|
-- patch-drop-comment-fields.sql
|
|
--
|
|
-- T166732. Drop old xx_comment fields, and defaults from xx_comment_id fields.
|
|
|
|
ALTER TABLE /*_*/archive
|
|
DROP COLUMN ar_comment,
|
|
ALTER COLUMN ar_comment_id DROP DEFAULT;
|