An open API service indexing awesome lists of open source software.

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.

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```