Pull Request branch dev-clone to main #1

Merged
gitea merged 429 commits from dev-clone into main 2024-12-23 09:31:34 +00:00
Showing only changes of commit 418d91b0e6 - Show all commits

View File

@ -13,8 +13,8 @@ export const respondents = pgTable("respondents", {
workExperience: varchar("workExperience").notNull(),
address: text("address").notNull(),
phoneNumber: varchar("phoneNumber", { length: 13 }).notNull(),
createdAt: timestamp("createdAt", { mode: "date" }),
updatedAt: timestamp("updatedAt", { mode: "date" }),
createdAt: timestamp("createdAt", { mode: "date" }).defaultNow(),
updatedAt: timestamp("updatedAt", { mode: "date" }).defaultNow(),
deletedAt: timestamp("deletetAt", { mode: "date" }),
});