I'm using a service called Supabase and I created a table:
CREATE TABLE my_table (
"id" BIGSERIAL PRIMARY KEY NOT NULL,
"title" Text COLLATE "pg_catalog"."default",
"message" Text COLLATE "pg_catalog"."default");
However, this turns into an int8 type. Is that smaller than bigint?