Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ciiqr/prisma-cockroachdb-region-enum
cockroach internal region enum prisma reproduction
https://github.com/ciiqr/prisma-cockroachdb-region-enum
Last synced: 20 days ago
JSON representation
cockroach internal region enum prisma reproduction
- Host: GitHub
- URL: https://github.com/ciiqr/prisma-cockroachdb-region-enum
- Owner: ciiqr
- Created: 2024-07-22T23:57:22.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-07-24T16:00:31.000Z (6 months ago)
- Last Synced: 2024-07-24T18:31:56.942Z (6 months ago)
- Homepage: https://github.com/prisma/prisma/issues/11127#issuecomment-2244016603
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# prisma-cockroachdb-region-enum
```bash
# regions rely on an enterprise licence (trial licences should work)
export COCKROACH_ORG='...'
export COCKROACH_LICENSE_KEY='...'docker compose up -d
export DATABASE_URL='postgresql://root@localhost:26257/example?sslmode=disable'
cockroach sql --url "$DATABASE_URL" -e '
ALTER DATABASE example PRIMARY REGION "aws-us-east-1";
ALTER DATABASE example ADD REGION "aws-us-west-2";
'npx prisma db pull
npx prisma migrate dev
```