feat(sprint3): EconomyModule TetardCoin + TwitchModule EventSub — migration + 36 tests

This commit is contained in:
2026-03-17 07:10:45 +01:00
parent 1fce52f05c
commit 49b8aa1211
18 changed files with 4023 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
import { Entity, PrimaryColumn, CreateDateColumn } from 'typeorm';
@Entity('processed_events')
export class ProcessedEvent {
@PrimaryColumn({ type: 'varchar', length: 255 })
id: string;
@CreateDateColumn({ name: 'processed_at' })
processedAt: Date;
}