Typically you wouldn't as you then reduce the usability (i.e. there is no way of discerning say the nth element easily).
Rather you could create a table that would have a column for each element and a link/reference/mapping to the respective bug.
e.g. you could have something like the following :-
DROP TABLE If EXISTS bug;
DROP TABLE IF EXISTS bugarrayelements;
CREATE TABLE IF NOT EXISTS bug
(
id BIGINT NOT NULL,
title VARCHAR,
description VARCHAR,
timestamp TIMESTAMP,
duedate DATETIME,
assignedto VARCHAR,
userid BIGINT NOT NULL,
viewedby VARCHAR[],
watchers VARCHAR[],
priority VARCHAR,
tags VARCHAR[],
comments VARCHAR[],
PRIMARY KEY(id)
--FOREIGN KEY(userid) REFERENCES user(id) -- commented out for convenience
);
CREATE TABLE IF NOT EXISTS bugarrayelements
(bug_reference INTEGER, element_order INTEGER, element_data TEXT
);
-- First bug with representation of a 5 element string array
INSERT INTO bug (id,title,userid) VALUES(1,'bug001',100);
INSERT INTO bugarrayelements VALUES
(1,1,'This failed.'),
(1,2,'It failed with this error.'),
(1,3,'It failed on line 2450.'),
(1,4,'Out of a total of 9567 lines of code.'),
(1,5,'blah blah blah.')
;
-- Second bug
INSERT INTO bug (id,title,userid) VALUES(2,'bug500',321);
INSERT INTO bugarrayelements VALUES
(2,1,'This failed.'),
(2,2,'It failed with this error.'),
(2,3,'It failed on line 2450'),
(2,4,'Out of a total of 9567 lines of code.'),
(2,5,'blah blah blah.'),
(2,1,'This failed.'),
(2,2,'It failed with this error.'),
(2,3,'It failed on line 2450'),
(2,4,'Out of a total of 9567 lines of code.'),
(2,5,'blah blah blah.')
;
SELECT * FROM bug JOIN bugarrayelements ON bug_reference = bug.id ORDER BY bug.id,element_order;
SELECT bug.title,bug.userid, group_concat(element_data,' ~~~ ') FROM bug JOIN bugarrayelements ON bug_reference = bug.id GROUP BY bug.id ORDER BY bug.id, element_order;
using the above the first result would be :-

the second result would be :-

The above shows multiple insertions (i.e. all array elements), they could also be added individually (probably within a transaction)