mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 20:08:37 +00:00
15 lines
414 B
TypeScript
15 lines
414 B
TypeScript
import { PrismaClient } from '@prisma/client';
|
|
|
|
import { FeatureType } from '../../core/features';
|
|
import { upsertLatestFeatureVersion } from './utils/user-features';
|
|
|
|
export class AiEarlyAccess1713176777814 {
|
|
// do the migration
|
|
static async up(db: PrismaClient) {
|
|
await upsertLatestFeatureVersion(db, FeatureType.AIEarlyAccess);
|
|
}
|
|
|
|
// revert the migration
|
|
static async down(_db: PrismaClient) {}
|
|
}
|