3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-22 17:25:01 +00:00

Fix trigger checks matching across different counters

This commit is contained in:
Dragory 2021-02-14 17:12:47 +02:00
parent 30426960e7
commit 2b6f70e16b
2 changed files with 6 additions and 1 deletions

View file

@ -2,7 +2,7 @@ import { Column, Entity, PrimaryColumn } from "typeorm";
@Entity("counter_trigger_states")
export class CounterTriggerState {
@Column()
@Column({ type: "bigint", generated: "increment" })
@PrimaryColumn()
id: string;