📝
【Drizzle ORM】NextJs14 と Drizzle ORM【#13 Drizzle One to One 】
【#13 Drizzle One to One 】
YouTube: https://youtu.be/J7Rr3CV_fZ0
今回はDrizzle ORM のスキーマの設定について詳しく見ていきます。
まずは「One-to-one」のリレーションの設定について実装をしていきます。
ユーザーのテーブルとプロフィールのテーブルを
ユーザーIDで紐づけを行います。
db/schema.ts
import { relations } from "drizzle-orm";
import { pgTable, text, timestamp } from "drizzle-orm/pg-core";
import { createInsertSchema } from "drizzle-zod";
export const users = pgTable("users_table", {
id: text("id").primaryKey(),
clerkId: text("clerk_id").notNull().unique(),
name: text("name").notNull(),
email: text("email").notNull().unique(),
imageUrl: text("image_url"),
createdAt: timestamp("created_at").notNull().defaultNow(),
updatedAt: timestamp("updated_at")
.notNull()
.$onUpdate(() => new Date()),
});
export const usersRelations = relations(users, ({ one, many }) => ({
profile: one(profile),
}));
export const insertUsersSchema = createInsertSchema(users);
export const profile = pgTable("profile_table", {
id: text("id").primaryKey(),
userId: text("user_id").references(() => users.id, { onDelete: "cascade" }),
message: text("message"),
createdAt: timestamp("created_at").notNull().defaultNow(),
updatedAt: timestamp("updated_at")
.notNull()
.$onUpdate(() => new Date()),
});
Discussion