9 lines
190 B
MySQL
9 lines
190 B
MySQL
|
|
-- Add the new column
|
||
|
|
ALTER TABLE incident
|
||
|
|
ADD COLUMN IF NOT EXISTS jira_links text[] DEFAULT '{}'::text[];
|
||
|
|
|
||
|
|
-- Drop the old column
|
||
|
|
ALTER TABLE incident
|
||
|
|
DROP
|
||
|
|
COLUMN jira_id;
|