import { sql, Kysely } from 'kysely'; export async function up(db: Kysely): Promise { await db.schema .createTable('user_tokens') .addColumn('id', 'uuid', (col) => col.primaryKey().defaultTo(sql`gen_uuid_v7()`), ) .addColumn('token', 'varchar', (col) => col.notNull()) .addColumn('type', 'varchar', (col) => col.notNull()) .addColumn('user_id', 'uuid', (col) => col.notNull().references('users.id').onDelete('cascade'), ) .addColumn('workspace_id', 'uuid', (col) => col.references('workspaces.id').onDelete('cascade'), ) .addColumn('expires_at', 'timestamptz') .addColumn('used_at', 'timestamptz', (col) => col) .addColumn('created_at', 'timestamptz', (col) => col.notNull().defaultTo(sql`now()`), ) .execute(); } export async function down(db: Kysely): Promise { await db.schema.dropTable('user_tokens').execute(); }