You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it's because I have array type in PG. I give you the table schema:
CREATETABLEIF NOT EXISTS public.tasks
(
task_id integerNOT NULL DEFAULT nextval('tasks_task_id_seq'::regclass),
title character varying(70) COLLATE pg_catalog."default"NOT NULL,
description character varying[] COLLATE pg_catalog."default"NOT NULL DEFAULT ARRAY[]::character varying[],
due_on timestamp without time zoneNOT NULL,
created_on timestamp without time zoneNOT NULL DEFAULT CURRENT_TIMESTAMP,
done_on timestamp without time zone,
CONSTRAINT tasks_pkey PRIMARY KEY (task_id)
)
Hello !
everything is in title. It's not very disturbing it just generates a warning message. To reproduce you can use this:
https://codeberg.org/Mik000/keepup/src/commit/e22a8f97e4400a7730fc5f5fbbf3b3cbb4f15e9b
I removed the warning in sql.gleam but regenerates it with squirrel will rewrite it.
The text was updated successfully, but these errors were encountered: