Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mfarhadattari/prisma_orm
https://github.com/mfarhadattari/prisma_orm
postgresql prisma-orm typescript
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/mfarhadattari/prisma_orm
- Owner: mfarhadattari
- Created: 2024-03-24T14:59:37.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-03-25T16:14:42.000Z (9 months ago)
- Last Synced: 2024-03-26T07:28:34.865Z (9 months ago)
- Topics: postgresql, prisma-orm, typescript
- Language: TypeScript
- Homepage:
- Size: 22.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Prisma ORM
## Prisma CMD
- Set up a new Prisma project
```cmd
prisma init
```- Generate artifacts (e.g. Prisma Client)
```cmd
prisma generate
```- Browse your data
```cmd
prisma studio
```- Create migrations from your Prisma schema, apply them to the database, generate artifacts (e.g. Prisma Client)
```cmd
prisma migrate dev
```- Pull the schema from an existing database, updating the Prisma schema
```cmd
prisma db pull
```- Push the Prisma schema state to the database
```cmd
prisma db push
```- Validate your Prisma schema
```cmd
prisma validate
```- Format your Prisma schema
```cmd
prisma format
```- Display Prisma version info
```cmd
prisma version
```- Display Prisma debug info
```cmd
prisma debug
```