@felloh-org/lambda-wrapper 1.1.42 → 1.1.43

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.
@@ -6,7 +6,7 @@ module.exports = class paymentProviderActiveWeighting1658478874188 {
6
6
  async up(queryRunner) {
7
7
  await queryRunner.query(`ALTER TABLE "payment"."payment_provider" ADD "is_active" boolean NOT NULL DEFAULT false`);
8
8
  await queryRunner.query(`ALTER TABLE "payment"."organisation_payment_provider" ADD "is_active" boolean NOT NULL DEFAULT false`);
9
- await queryRunner.query(`ALTER TABLE "payment"."organisation_payment_provider" ADD "weight" integer NOT NULL`);
9
+ await queryRunner.query(`ALTER TABLE "payment"."organisation_payment_provider" ADD "weight" integer NOT NULL DEFAULT 0`);
10
10
  await queryRunner.query(`UPDATE "payment"."payment_provider" SET "is_active" = true`);
11
11
  await queryRunner.query(`UPDATE "payment"."organisation_payment_provider" SET "is_active" = true, "weight" = 100`);
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felloh-org/lambda-wrapper",
3
- "version": "1.1.42",
3
+ "version": "1.1.43",
4
4
  "description": "Lambda wrapper for all Felloh Serverless Projects",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {