Skip to content

Commit

Permalink
remove files and requests
Browse files Browse the repository at this point in the history
  • Loading branch information
koji-m committed Oct 31, 2024
1 parent d52b20d commit 3be9565
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions drizzle/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,6 @@ export const requests = pgTable("requests", {
.references(() => builds.dbId),
status: text("status").$type<RequestStatus>().notNull().default("queued"),
createdAt: timestamp("created_at").defaultNow().notNull(),
updatedAt: timestamp("updated_at").defaultNow().notNull().$onUpdate(() => new Date()),
startedAt: timestamp("started_at"),
finishedAt: timestamp("finished_at"),
});
Expand Down Expand Up @@ -379,7 +378,6 @@ export const files = pgTable("files", {
fileSize: integer("file_size").notNull(),
blobUrl: text("blob_url").notNull(),
createdAt: timestamp("created_at").defaultNow().notNull(),
updatedAt: timestamp("updated_at").defaultNow().notNull().$onUpdate(() => new Date()),
});
export const fileOpenaiFileRepresentations = pgTable(
"file_openai_file_representations",
Expand Down

0 comments on commit 3be9565

Please sign in to comment.