@felloh-org/lambda-wrapper 1.11.8 → 1.11.9

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.
@@ -36,7 +36,8 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
36
36
  nullable: true
37
37
  }), _dec8 = (0, _typeorm.Column)({
38
38
  type: "varchar",
39
- length: 50
39
+ length: 50,
40
+ nullable: true
40
41
  }), _dec9 = (0, _typeorm.Column)({
41
42
  type: "int",
42
43
  nullable: true
@@ -0,0 +1,12 @@
1
+ const { MigrationInterface, QueryRunner } = require("typeorm");
2
+
3
+ module.exports = class totalNullableMerchantAccountNumber1689161863334 {
4
+ name = 'totalNullableMerchantAccountNumber1689161863334'
5
+
6
+ async up(queryRunner) {
7
+ await queryRunner.query(`ALTER TABLE "total_processing"."transaction" ALTER COLUMN "merchant_account_id" DROP NOT NULL`);}
8
+
9
+ async down(queryRunner) {
10
+ await queryRunner.query(`ALTER TABLE "total_processing"."transaction" ALTER COLUMN "merchant_account_id" SET NOT NULL`);
11
+ }
12
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felloh-org/lambda-wrapper",
3
- "version": "1.11.8",
3
+ "version": "1.11.9",
4
4
  "description": "Lambda wrapper for all Felloh Serverless Projects",
5
5
  "main": "dist/index.js",
6
6
  "engines": {