Complete migration setup

This commit is contained in:
Owen Schwartz 2024-12-25 16:40:39 -05:00
parent 907504eefb
commit 993eab5ac1
No known key found for this signature in database
GPG key ID: 8271FDFFD9E0CCBD
5 changed files with 79 additions and 129 deletions

View file

@ -1,7 +1,8 @@
import db from "@server/db";
import logger from "@server/logger";
export default async function run() {
export default async function migration100() {
logger.info("Running setup script 1.0.0");
// SQL operations would go here in ts format
logger.info("Done...");
}