https://github.com/manadaym/pg-sql-migrations
Database migration scripts for social-network db.
https://github.com/manadaym/pg-sql-migrations
migration postgresql sql
Last synced: about 1 month ago
JSON representation
Database migration scripts for social-network db.
- Host: GitHub
- URL: https://github.com/manadaym/pg-sql-migrations
- Owner: ManadayM
- Created: 2022-01-21T15:30:16.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-01-22T13:38:16.000Z (over 4 years ago)
- Last Synced: 2025-01-31T08:13:14.089Z (over 1 year ago)
- Topics: migration, postgresql, sql
- Language: JavaScript
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PostgreSQL Schema Migrations
## Create a new migration file
```npm run migrate create table comments```
### Run migration script to push changes
```DATABASE_URL=postgres://postgres:password@localhost:5432/socialnetwork npm run migrate up```
### Run migration script to rollback changes
```DATABASE_URL=postgres://postgres:password@localhost:5432/socialnetwork npm run migrate down```