Barazo AppView backend
barazo.forum
1import { pgTable, text, bigint, timestamp } from 'drizzle-orm/pg-core'
2
3export const firehoseCursor = pgTable('firehose_cursor', {
4 id: text('id').primaryKey().default('default'),
5 cursor: bigint('cursor', { mode: 'bigint' }),
6 updatedAt: timestamp('updated_at', { withTimezone: true }).notNull().defaultNow(),
7})