Skip to content

Commit

Permalink
feat: thumbnailUrl field 추가 (#56)
Browse files Browse the repository at this point in the history
Co-authored-by: Gukhee Jo <[email protected]>
  • Loading branch information
9keyyyy and Gukhee Jo authored Aug 18, 2024
1 parent 75d323d commit 1536abb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/db/schema/invitations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ export const invitations = pgTable("invitation", {
customFields: json("custom_fields").notNull().$type<Record<string, any>>(),
title: text("title").notNull(),
eventUrl: text("event_url").unique().notNull(),
thumbnailUrl: text("thumbnail_url"),
createdAt: timestamp("created_at", {
withTimezone: true,
mode: "date",
Expand Down
1 change: 1 addition & 0 deletions src/lib/db/schema/templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ export const templates = pgTable("template", {
title: text("title").notNull(),
description: text("description"),
customFields: json("custum_fields"),
thumbnailUrl: text("thumbnail_url"),
createdAt: timestamp("created_at", {
withTimezone: true,
mode: "date",
Expand Down

0 comments on commit 1536abb

Please sign in to comment.