chore: Add active column to flows
This commit is contained in:

committed by
Ömer Faruk Aydın

parent
430f0d07e8
commit
02cfb979bc
@@ -4,6 +4,7 @@ import Step from './step'
|
||||
class Flow extends Base {
|
||||
id!: number
|
||||
userId!: number
|
||||
active: boolean
|
||||
|
||||
static tableName = 'flows';
|
||||
|
||||
@@ -12,7 +13,8 @@ class Flow extends Base {
|
||||
|
||||
properties: {
|
||||
id: { type: 'integer' },
|
||||
userId: { type: 'integer' }
|
||||
userId: { type: 'integer' },
|
||||
active: { type: 'boolean' }
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user