Changeset b0685a8 for database/drizzle/schema
- Timestamp:
- 01/23/26 18:27:06 (6 months ago)
- Branches:
- main
- Children:
- ad211d1
- Parents:
- 41a2f81
- File:
-
- 1 edited
-
database/drizzle/schema/builds.ts (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
database/drizzle/schema/builds.ts
r41a2f81 rb0685a8 17 17 18 18 export const buildComponentsTable = pgTable("build_component", { 19 id: serial("id").primaryKey(), 19 20 buildId: integer("build_id") 20 21 .notNull() … … 24 25 .references(() => componentsTable.id, { onDelete: "cascade", onUpdate: "cascade" }), 25 26 }, 26 (t) => ({27 pk: primaryKey({ columns: [t.buildId, t.componentId] }),28 }),29 27 ); 30 28
Note:
See TracChangeset
for help on using the changeset viewer.
