some table is missing with gen types
I ran the command below to generate types in a local database.
supabase gen types typescript --local
but one table (which is named as dress) is not generated.
Data in this table was manually copied by running sql file via psql (psql -h localhost -p 54322 -U postgres -f dump_dress_20220831.sql)
dump_dress_20220831.sql is like this
COPY "public"."dress" ("name", "name_kor", "id", "color", "price", "dress_info") FROM stdin;
\N 도트도트 72 \N \N \N
ANDY 앤디(55) 1 \N \N \N
BLACK OFF 블랙오프(66) 8 \N \N \N
ANDY 앤디(66) 2 \N \N \N
...
Is the fact that I copied data manually something to do with it?
What should I do to include this table in the result of generating type command?
supabase gen types typescript --local
but one table (which is named as dress) is not generated.
Data in this table was manually copied by running sql file via psql (psql -h localhost -p 54322 -U postgres -f dump_dress_20220831.sql)
dump_dress_20220831.sql is like this
COPY "public"."dress" ("name", "name_kor", "id", "color", "price", "dress_info") FROM stdin;
\N 도트도트 72 \N \N \N
ANDY 앤디(55) 1 \N \N \N
BLACK OFF 블랙오프(66) 8 \N \N \N
ANDY 앤디(66) 2 \N \N \N
...
Is the fact that I copied data manually something to do with it?
What should I do to include this table in the result of generating type command?