• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-client-gateway / 13640866248

03 Mar 2025 09:33PM UTC coverage: 90.415% (-0.01%) from 90.428%
13640866248

Pull #2421

github

web-flow
build(deps): bump docker/setup-qemu-action from 3.4.0 to 3.6.0

Bumps [docker/setup-qemu-action](https://github.com/docker/setup-qemu-action) from 3.4.0 to 3.6.0.
- [Release notes](https://github.com/docker/setup-qemu-action/releases)
- [Commits](https://github.com/docker/setup-qemu-action/compare/v3.4.0...v3.6.0)

---
updated-dependencies:
- dependency-name: docker/setup-qemu-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #2421: build(deps): bump docker/setup-qemu-action from 3.4.0 to 3.6.0

3115 of 3773 branches covered (82.56%)

Branch coverage included in aggregate %.

10657 of 11459 relevant lines covered (93.0%)

505.28 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/migrations/1737473344288-create_wallets.ts
1
import type { MigrationInterface, QueryRunner } from 'typeorm';
2

3
export class CreateWallets1737473344288 implements MigrationInterface {
×
4
  name = 'CreateWallets1737473344288';
×
5

6
  public async up(queryRunner: QueryRunner): Promise<void> {
7
    await queryRunner.query(
×
8
      `CREATE TABLE "wallets" ("id" SERIAL NOT NULL, "address" character varying(42) NOT NULL, "created_at" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "updated_at" TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT now(), "user_id" integer NOT NULL, CONSTRAINT "UQ_wallet_address" UNIQUE ("address"), CONSTRAINT "PK_wallet_id" PRIMARY KEY ("id"))`,
9
    );
10
    await queryRunner.query(
×
11
      `ALTER TABLE "wallets" ADD CONSTRAINT "FK_wallets_user_id" FOREIGN KEY ("user_id") REFERENCES "users"("id") ON DELETE CASCADE ON UPDATE NO ACTION`,
12
    );
13
  }
14

15
  public async down(queryRunner: QueryRunner): Promise<void> {
16
    await queryRunner.query(
×
17
      `ALTER TABLE "wallets" DROP CONSTRAINT "FK_wallets_user_id"`,
18
    );
19
    await queryRunner.query(`DROP TABLE "wallets"`);
×
20
  }
21
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc