mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-15 18:30:39 +09:00
10 lines
406 B
TypeScript
10 lines
406 B
TypeScript
|
|
import { pgTable, uuid, text, timestamp } from "drizzle-orm/pg-core";
|
||
|
|
|
||
|
|
export const projects = pgTable("projects", {
|
||
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
||
|
|
name: text("name").notNull(),
|
||
|
|
description: text("description"),
|
||
|
|
createdAt: timestamp("created_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
updatedAt: timestamp("updated_at", { withTimezone: true }).notNull().defaultNow(),
|
||
|
|
});
|