Try this. I hope this might help. For more: Typeorm Exclusion Feature
@Entity()
@Exclusion(`USING gist ("room" WITH =, tsrange("from", "to") WITH &&)`)
export class RoomBooking {
@Column()
room: string;
@Column()
from: Date;
@Column()
to: Date;
}