Sifa professional network API (Fastify, AT Protocol, Jetstream)
sifa.id/
1import { pgTable, text, timestamp } from 'drizzle-orm/pg-core';
2
3export const sessions = pgTable('sessions', {
4 id: text('id').primaryKey(),
5 did: text('did').notNull(),
6 createdAt: timestamp('created_at', { withTimezone: true }).notNull(),
7 expiresAt: timestamp('expires_at', { withTimezone: true }).notNull(),
8});