import { Column, Entity, PrimaryColumn } from 'typeorm'; @Entity('zap_stats') export class ZapStats { @PrimaryColumn() projectId: string; @Column('int', { default: 0 }) zapCount: number; @Column('int', { default: 0 }) zapAmountSats: number; @Column({ type: 'jsonb', default: [] }) recentZapperPubkeys: string[]; }