Text array column in sqlite

How do I create the "status" column, which is a text array in a type-safe way:

CREATE TABLE IF NOT EXISTS "message" (
"name" varchar,
"status" TEXT[] NOT NULL,
"date" DATE,
);
Was this page helpful?