import { Features } from '../../core/features'; import { upsertFeature } from './utils/user-features'; export class RefreshUserFeatures1704352562369 { // do the migration static async up(db) { // add early access v2 & copilot feature for (const feature of Features) { await upsertFeature(db, feature); } } // revert the migration static async down(_db) { } } //# sourceMappingURL=1704352562369-refresh-user-features.js.map