mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-29 19:55:20 +00:00
12 lines
399 B
TypeScript
12 lines
399 B
TypeScript
//
|
|
// Copyright @ 2024 Hardcore Engineering Inc.
|
|
//
|
|
|
|
import { type MigrateOperation, type MigrationClient, type MigrationUpgradeClient } from '@hcengineering/model'
|
|
|
|
export const questionsOperation: MigrateOperation = {
|
|
async migrate (client: MigrationClient): Promise<void> {},
|
|
|
|
async upgrade (state: Map<string, Set<string>>, client: () => Promise<MigrationUpgradeClient>): Promise<void> {}
|
|
}
|