feat: signal server tag

This commit is contained in:
2026-06-05 06:16:02 +02:00
parent 6865147e8f
commit bf4e6891d1
69 changed files with 2808 additions and 1269 deletions

View File

@@ -0,0 +1,13 @@
import { MigrationInterface, QueryRunner } from 'typeorm';
export class AddHomeSignalServerUrl1000000000012 implements MigrationInterface {
name = 'AddHomeSignalServerUrl1000000000012';
public async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(`ALTER TABLE "users" ADD COLUMN "homeSignalServerUrl" TEXT`);
}
public async down(queryRunner: QueryRunner): Promise<void> {
// SQLite column removal requires table rebuilds. Keep rollback no-op.
}
}