all repos — stealth-developers @ e3649499a4f2c6f95902a43a0f171e9df0d40ad1

apps/migration/src/old-db/schema/moderators.ts (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
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(),
});