Creating a table for our Supabase database with Prisma in NextJs.
Published:
In this article, we will go through how we can define a data model in the schema.prisma file and then create a table in supabase with Prisma migration.
Before we create a model, we need to connect our application to supabase with the help of Prisma. ...