hi guys! I have a table in mysql that I want to bu...
# prisma1-community
a
hi guys! I have a table in mysql that I want to build my api around, but Prisma seems to be looking an autogenerated table called
default@default
. Is there a way to change tables that Prisma looks at?
r
Hey @Ashwin Kudva 👋 The tables are created by the models in Prisma that you create. If you're looking to change the database and schema, you can do it in the
docker-compose.yml
file for Postgres as described here.
a
got it, thank you!
👍 1