Skip to content

Commit

Permalink
Merge branch 'main' into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
harisato committed Aug 24, 2023
2 parents e82b406 + f0b220f commit 6209ee8
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pyxis-safe-api",
"version": "0.5.0",
"version": "0.5.2",
"description": "Pyxis Safe Backend API",
"author": {
"name": "Aura Network",
Expand Down
13 changes: 13 additions & 0 deletions src/migrations/1687944391050-alter-multisig-tx-update-gas-type.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { MigrationInterface, QueryRunner } from 'typeorm';

export class alterMultisigTxUpdateGasType1687944391050
implements MigrationInterface
{
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`alter table MultisigTransaction modify Gas bigint not null;`,
);
}

public async down(queryRunner: QueryRunner): Promise<void> {}
}

0 comments on commit 6209ee8

Please sign in to comment.