3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-05-10 20:35:02 +00:00

Fix trigger checks matching across different counters

This commit is contained in:
Dragory 2021-02-14 17:12:47 +02:00
parent 93912541b4
commit 0c27795fd9
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1
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;