Skip to content

Commit

Permalink
Update server/db/schema.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
amandesai01 authored Sep 16, 2024
1 parent f9d77f3 commit 3c50637
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ export const jobPostingsTable = pgTable('job_postings', {
}),
isPublished: boolean('is_published').default(false).notNull(),
totalApplicants: integer('total_applicants').default(0).notNull(),
createdAt: timestamp('created_at', { withTimezone: true }).defaultNow().notNull(),
updatedAt: timestamp('updated_at', { withTimezone: true }).defaultNow().notNull(),
createdAt: timestamp('created_at').defaultNow().notNull(),
updatedAt: timestamp('updated_at').defaultNow().notNull(),
});

export type JobPosting = typeof jobPostingsTable.$inferSelect;
Expand Down

0 comments on commit 3c50637

Please sign in to comment.