import { sqliteTable, text } from "drizzle-orm/sqlite-core"; export const moderators = sqliteTable("moderators", { user_id: text("user_id").primaryKey(), subjective: text("subjective").notNull(), objective: text("objective").notNull(), possessiveDeterminer: text("possessive_determiner").notNull(), possessive: text("possessive").notNull(), reflexive: text("reflexive").notNull(), })