rake-db 2.0.28 → 2.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/.env +1 -1
  2. package/README.md +1 -1
  3. package/package.json +4 -4
package/.env CHANGED
@@ -1 +1 @@
1
- DATABASE_URL=postgres://postgres:@localhost:5432/porm
1
+ DATABASE_URL=postgres://postgres:@localhost:5432/orchid-orm
package/README.md CHANGED
@@ -2,4 +2,4 @@
2
2
 
3
3
  A tool for writing database migrations in TypeScript and running them. Currently, Postgres only.
4
4
 
5
- [Read docs here](https://porm.netlify.app/guide/migrations.html).
5
+ [Read docs here](https://orchid-orm.netlify.app/guide/migration-setup-and-overview.html).
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "rake-db",
3
- "version": "2.0.28",
3
+ "version": "2.0.30",
4
4
  "description": "Migrations tool for Postgresql DB",
5
- "homepage": "https://porm.netlify.app/guide/migrations.html",
5
+ "homepage": "https://orchid-orm.netlify.app/guide/migrations.html",
6
6
  "repository": {
7
7
  "type": "git",
8
- "url": "https://github.com/romeerez/porm/tree/main/packages/rake-db"
8
+ "url": "https://github.com/romeerez/orchid-orm/tree/main/packages/rake-db"
9
9
  },
10
10
  "main": "dist/index.js",
11
11
  "module": "dist/index.esm.js",
@@ -40,7 +40,7 @@
40
40
  "author": "Roman Kushyn",
41
41
  "license": "ISC",
42
42
  "dependencies": {
43
- "pqb": "0.5.3",
43
+ "pqb": "0.5.5",
44
44
  "enquirer": "^2.3.6",
45
45
  "pluralize": "^8.0.0"
46
46
  },