banatie-service/packages/database/src/schema/organizations.ts

18 lines
661 B
TypeScript

import { pgTable, uuid, text, timestamp } from 'drizzle-orm/pg-core';
export const organizations = pgTable('organizations', {
id: uuid('id').primaryKey().defaultRandom(),
// Organization details
name: text('name').notNull(),
slug: text('slug').notNull().unique(), // URL-friendly identifier for storage paths
email: text('email').notNull().unique(),
// Timestamps
createdAt: timestamp('created_at').notNull().defaultNow(),
updatedAt: timestamp('updated_at').notNull().defaultNow().$onUpdate(() => new Date()),
});
export type Organization = typeof organizations.$inferSelect;
export type NewOrganization = typeof organizations.$inferInsert;