change the schema from public to freight

This commit is contained in:
marshal
2026-05-23 10:00:40 +03:00
parent ecbf1f2408
commit 2064e6efda
10 changed files with 10 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
import { BaseEntity } from "@edr/api-common";
import { Column, Entity } from "typeorm";
@Entity({ name: "bookings" })
@Entity({ schema:"freight",name: "bookings" })
export class Booking extends BaseEntity {
// ── core ───────────────────────────────────────────────────────────────
@Column({ name: "reference", type: "varchar", length: 64, unique: true })