mirror of
https://github.com/fosrl/pangolin.git
synced 2025-06-23 21:58:50 +02:00
7 lines
222 B
TypeScript
7 lines
222 B
TypeScript
|
import logger from "@server/logger";
|
||
|
|
||
|
export default async function migration100beta1() {
|
||
|
logger.info("Running setup script 1.0.0-beta.1");
|
||
|
// SQL operations would go here in ts format
|
||
|
logger.info("Done...");
|
||
|
}
|