How to change schema without losing data?
I want to change my schema & add a new field
My current schema looks like:
Now whenever I edit my schema the data from my supabase(postgres) database gets deleted. How can I change the schema while also preserving all the rows in my database??
hidden: boolean("hidden").notNull().default(false),My current schema looks like:
Now whenever I edit my schema the data from my supabase(postgres) database gets deleted. How can I change the schema while also preserving all the rows in my database??