mirror of
https://github.com/OCEAN-xyz/datum-gateway-startos.git
synced 2025-05-12 19:20:43 +02:00
parent
ca445001ae
commit
b0d0396f0e
@ -1,4 +1,24 @@
|
||||
import { compat, types as T } from "../deps.ts";
|
||||
import { compat, matches, types as T } from "../deps.ts";
|
||||
|
||||
export const migration: T.ExpectedExports.migration = compat.migrations
|
||||
.fromMapping({}, "0.3.5" );
|
||||
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.1", type: "down" }
|
||||
),
|
||||
},
|
||||
},
|
||||
"0.2.1"
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user