@delpa/mt-prisma 0.8.0 → 0.9.0

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@delpa/mt-prisma",
3
- "version": "0.8.0",
3
+ "version": "0.9.0",
4
4
  "description": "Prisma ORM package for Moving Truck microservices",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -0,0 +1,22 @@
1
+ -- AlterEnum
2
+ -- This migration adds more than one value to an enum.
3
+ -- With PostgreSQL versions 11 and earlier, this is not possible
4
+ -- in a single migration. This can be worked around by creating
5
+ -- multiple migrations, each migration adding only one value to
6
+ -- the enum.
7
+
8
+
9
+ ALTER TYPE "AddressType" ADD VALUE 'FUEL_STATION';
10
+ ALTER TYPE "AddressType" ADD VALUE 'REST_STOP';
11
+ ALTER TYPE "AddressType" ADD VALUE 'TOLL_BOOTH';
12
+ ALTER TYPE "AddressType" ADD VALUE 'CUSTOMS';
13
+ ALTER TYPE "AddressType" ADD VALUE 'INSPECTION';
14
+ ALTER TYPE "AddressType" ADD VALUE 'MAINTENANCE';
15
+ ALTER TYPE "AddressType" ADD VALUE 'LOADING_DOCK';
16
+ ALTER TYPE "AddressType" ADD VALUE 'CROSS_DOCK';
17
+ ALTER TYPE "AddressType" ADD VALUE 'DISTRIBUTION_CENTER';
18
+ ALTER TYPE "AddressType" ADD VALUE 'BORDER_CROSSING';
19
+ ALTER TYPE "AddressType" ADD VALUE 'WEIGH_STATION';
20
+ ALTER TYPE "AddressType" ADD VALUE 'PARKING';
21
+ ALTER TYPE "AddressType" ADD VALUE 'OVERNIGHT_STOP';
22
+ ALTER TYPE "AddressType" ADD VALUE 'CUSTOMER_SITE';