mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove commented out items
This commit is contained in:
parent
e19d4357c8
commit
5d6c2ba7f8
1 changed files with 0 additions and 37 deletions
|
|
@ -500,40 +500,3 @@ export class Rule extends BaseEntity {
|
|||
@Column({ type: 'timestamp', name: 'failed_at' })
|
||||
failedAt?: Date
|
||||
}
|
||||
|
||||
// @Entity({ name: 'rules' })
|
||||
// export class Rule {
|
||||
// @PrimaryGeneratedColumn('uuid')
|
||||
// id!: string
|
||||
|
||||
// // @ManyToOne(() => User, { onDelete: 'CASCADE' })
|
||||
// // @JoinColumn({ name: 'user_id' })
|
||||
// // user!: User
|
||||
|
||||
// @Column('text')
|
||||
// name!: string
|
||||
|
||||
// // @Column('text')
|
||||
// // filter!: string
|
||||
|
||||
// // @Column('simple-json')
|
||||
// // actions!: RuleAction[]
|
||||
|
||||
// @Column('text', { nullable: true })
|
||||
// description?: string | null
|
||||
|
||||
// // @Column('text', { array: true })
|
||||
// // eventTypes!: RuleEventType[]
|
||||
|
||||
// // @Column('boolean', { default: true })
|
||||
// // enabled!: boolean
|
||||
|
||||
// // @Column({ type: 'timestamp', name: 'created_at' })
|
||||
// // createdAt!: Date
|
||||
|
||||
// // @Column({ type: 'timestamp', name: 'updated_at' })
|
||||
// // updatedAt!: Date
|
||||
|
||||
// // @Column({ type: 'timestamp', name: 'failed_at' })
|
||||
// // failedAt?: Date
|
||||
// }
|
||||
|
|
|
|||
Loading…
Reference in a new issue