5 lines
178 B
TypeScript
5 lines
178 B
TypeScript
export default async function migration() {
|
|
console.log("Running setup script 1.0.0-beta.1...");
|
|
// SQL operations would go here in ts format
|
|
console.log("Done.");
|
|
}
|