mirror of
https://github.com/OCEAN-xyz/datum-gateway-startos.git
synced 2025-05-12 19:20:43 +02:00
25 lines
564 B
TypeScript
25 lines
564 B
TypeScript
import { compat, matches, types as T } from "../deps.ts";
|
|
|
|
export const migration: T.ExpectedExports.migration =
|
|
compat.migrations.fromMapping(
|
|
{
|
|
"0.2.1": {
|
|
up: compat.migrations.updateConfig(
|
|
(config) => {
|
|
return config;
|
|
},
|
|
false,
|
|
{ version: "0.2.1", type: "up" }
|
|
),
|
|
down: compat.migrations.updateConfig(
|
|
(config) => {
|
|
return config;
|
|
},
|
|
false,
|
|
{ version: "0.2.2", type: "down" }
|
|
),
|
|
},
|
|
},
|
|
"0.2.1"
|
|
);
|