Compare commits

...

2 Commits

Author SHA1 Message Date
29b09848b0 Merge branch 'main' of https://gitea.rannes.dev/rannes.dev/wine-shop
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m21s
2024-06-03 11:37:01 +02:00
013c80791e added onDelete cascade on regions, subregions, producers and wines 2024-06-03 11:36:56 +02:00

View File

@ -21,7 +21,9 @@ export const producers = createTable(
name: text("name").notNull().unique(),
description: text("description"),
imageUrl: text("imageUrl"),
countryId: uuid("countryId").notNull(),
countryId: uuid("countryId")
.references(() => countries.id, { onDelete: "cascade" })
.notNull(),
createdAt: timestamp("createdAt").defaultNow().notNull(),
updatedAt: timestamp("updatedAt").defaultNow(),
},
@ -52,7 +54,9 @@ export const wines = createTable("wine", {
type: typeEnum("type").notNull(),
description: text("description"),
imageUrl: text("imageUrl"),
producerId: uuid("producerId").notNull(),
producerId: uuid("producerId")
.references(() => producers.id, { onDelete: "cascade" })
.notNull(),
subRegionId: uuid("subRegionId"),
regionId: uuid("regionId").notNull(),
countryId: uuid("countryId").notNull(),
@ -87,7 +91,9 @@ export const subRegions = createTable(
{
id: uuid("id").primaryKey().notNull().defaultRandom(),
name: text("name").notNull().unique(),
regionId: uuid("regionId").notNull(),
regionId: uuid("regionId")
.references(() => regions.id, { onDelete: "cascade" })
.notNull(),
},
(t) => ({
uniqueSubRegion: unique().on(t.name, t.regionId),
@ -107,7 +113,9 @@ export const regions = createTable(
{
id: uuid("id").primaryKey().notNull().defaultRandom(),
name: text("name").notNull(),
countryId: uuid("countryId").notNull(),
countryId: uuid("countryId")
.references(() => countries.id, { onDelete: "cascade" })
.notNull(),
},
(t) => ({
uniqueRegion: unique().on(t.name, t.countryId),