Hello all, Won't prisma introspect work on database with no tables?. Does that mean everytime I should create a dummy table on new database with no data?
n
nikolasburk
08/26/2020, 2:00 PM
Hey @Jayanth 👋 Introspection indeed reads a database schema and translates it into a Prisma schema, that's the entire point of this functionality so running introspection without any tables doesn't really make sense 🙂
@nikolasburk I am new to prisma please bare with me. In prisma 1 all I have to do is change datamodel and then run prisma generate. Here I am not sure how to achieve that.