mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
11 lines
345 B
TypeScript
11 lines
345 B
TypeScript
import { Entity, PrimaryGeneratedColumn, Column, BaseEntity } from 'typeorm'
|
|
|
|
@Entity('invalid_transactions')
|
|
export class InvalidTransaction extends BaseEntity {
|
|
@PrimaryGeneratedColumn('increment', { unsigned: true, type: 'bigint' })
|
|
id: number
|
|
|
|
@Column({ name: 'iota_message_id', type: 'binary', length: 32 })
|
|
iotaMessageId: Buffer
|
|
}
|