PostgreSQL Database
Managed PostgreSQL database - included free with 100MB, upgradeable
PostgreSQL database is included in all Chita Cloud plans, starting with 100MB free on shared instances.
Pricing
PostgreSQL is available in all plans:
| Plan | Storage | Type | Price |
|---|---|---|---|
| Free (Included) | 100MB | Shared | €0 |
| Standard | 1GB | Dedicated | +€7/month |
| Professional | 2GB | Dedicated | +€18/month |
| High Availability | 4GB | Dedicated HA | +€36/month |
Free Plan: Includes 100MB PostgreSQL on a shared instance - perfect for testing and small projects.
Paid Add-ons: Available for Freelancer Starter, Professional, or Team Agency plans with dedicated resources and guaranteed performance.
Features
- Automatic Backups: Daily backups with 7-day retention
- EU Hosting: Data stored in Germany (GDPR compliant)
- Connection Pooling: Optimized connection management
- Dashboard Management: Create and manage databases via UI
- High Availability: Available on HA plan with automatic failover
- Performance Monitoring: Query performance insights
Quick Setup
Via dashboard:
- Click "Databases" in the sidebar
- Click "Create Database"
- Select plan (Small, Medium, or Large)
- Choose database name
- Click "Create"
- Copy connection string from dashboard
Connection
Connection String
DATABASE_URL=postgresql://user:pass@host:5432/dbnameThe connection string is automatically provided as an environment variable. Learn how to manage environment variables securely.
Migrations
Use your preferred migration tool:
# Prisma
npx prisma migrate deploy
# TypeORM
npm run typeorm migration:run
# Go migrate
migrate -database $DATABASE_URL -path ./migrations up