Data and your database
Apps that store things get a real Postgres database, provisioned automatically.
Apps that need to store data get a real Postgres database, provisioned from the blueprint — tables, columns, and relationships included, with seed rows so pages have something to show on first load.
Reads and writes go through server-side code with ownership checks, so one user can never read another user's rows just by changing an id in the URL.
When you deploy, the database connection is injected into your production app automatically — you do not copy any connection string yourself.
Still stuck on this?
Contact support →