I am attempting to define the Record
for migration functions, which use the direction of the migration as the key: v${number}-v${number}
,
Considering that these migrations are all UP, they need to be validated as
v${first-number}-v${first-number + 1}
and first-number + 1
should not exceed a predefined limit if possible.
Can this be accomplished using template literals or does it have to be done at runtime?