export const customerVehicleClaims = pgTable('customer_vehicle_claims', {
claimsid: text('claimsid').primaryKey().notNull(),
customervehicleid: integer('customervehicleid')
.notNull()
.references(() => customervehicle.customervehicleid),
createdAt: timestamp('created_at', { mode: 'string' }).defaultNow().notNull(),
updatedAt: timestamp('updated_at', { mode: 'string' }),
customerid: integer('customerid')
.notNull()
.references(() => customer.customerid),
vehicleid: integer('vehicleid')
.notNull()
.references(() => vehicle.vehicleid),
});
export const customerVehicleClaims = pgTable('customer_vehicle_claims', {
claimsid: text('claimsid').primaryKey().notNull(),
customervehicleid: integer('customervehicleid')
.notNull()
.references(() => customervehicle.customervehicleid),
createdAt: timestamp('created_at', { mode: 'string' }).defaultNow().notNull(),
updatedAt: timestamp('updated_at', { mode: 'string' }),
customerid: integer('customerid')
.notNull()
.references(() => customer.customerid),
vehicleid: integer('vehicleid')
.notNull()
.references(() => vehicle.vehicleid),
});