Database Management
Boottify provides managed MySQL databases with automatic provisioning, backups, and connection management.
Provisioning
Databases are automatically provisioned when you select a plan that includes database access. Each app gets its own isolated database.
Connection
Database credentials are automatically injected as environment variables:
DATABASE_URL=mysql://user:pass@localhost:3306/db_name
Backups
Automatic daily backups with 7-day retention. Manual backups can be triggered from the dashboard.
Prisma Support
Boottify natively supports Prisma ORM. Run migrations during deployment with a custom build command:
npx prisma migrate deploy && npm run build