Prisma
Studio Commands
Browse and edit your database with Prisma Studio's visual interface. View records, create data, and explore relationships through an auto-generated admin panel.
7 commands
Pro Tips
Launch with 'prisma studio' — opens a browser UI at localhost:5555 for browsing all your models.
Use Studio to quickly create test data without writing seed scripts — great for development.
Use '--port 5556' to run Studio on a different port if 5555 is already in use.
Common Mistakes
Prisma Studio connects to the database in your .env file. Make sure it points to development, not production.
Edits in Studio are applied directly to the database. There's no undo — be careful with production data.