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,
);
1 Reply
I don't think there are arrays in SQLite.