test(integration): add lightweight MySQL-backed API smoke tests for center and guild

This commit is contained in:
nav
2026-05-12 12:04:33 +00:00
parent 41a4172267
commit 8534c530c8
9 changed files with 715 additions and 8 deletions

View File

@@ -8,13 +8,13 @@ export class AuditLog {
@Column()
action!: string;
@Column({ nullable: true })
@Column({ type: 'varchar', length: 64, nullable: true })
actorId!: string | null;
@Column({ nullable: true })
@Column({ type: 'varchar', length: 64, nullable: true })
targetType!: string | null;
@Column({ nullable: true })
@Column({ type: 'varchar', length: 120, nullable: true })
targetId!: string | null;
@Column({ type: 'text', nullable: true })