super-todo-app-server/packages/db/schema.ts
= e2114f5b7f
Some checks failed
ci / ci (push) Failing after 53s
chore: migration vers monorepo
2026-02-23 21:10:28 +04:00

9 lines
283 B
TypeScript

import { pgTable, serial, text, timestamp } from 'drizzle-orm/pg-core';
export const projects = pgTable('projects', {
id: serial('id').primaryKey(),
name: text('name').notNull(),
description: text('description'),
createdAt: timestamp('created_at').defaultNow(),
});