Hi I have a problem let's suppose you have a table...
# off-topic
y
Hi I have a problem let's suppose you have a table and export table data using supabase dashboard in csv format then you want to create a new table, when doing that there's a option to add content directly from csv file but when trying that it gives me this error Sorry! We only accept CSV, TSV, or XLSX file types, please upload another file. what I am missing here?
and if you copy csv file text, supabase will create table but doesn't import data and makes only one column so if your table has two columns like
id
and
name
then first line of your csv file will be id,name but supabase will create one column named
id,name
without any data or rows
a
@User