Files
Superuser ff98547dbb init: me-web 个人简历前端
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-18 20:10:54 +08:00

18 lines
405 B
TypeScript

import { getDb } from "../api/queries/connection";
// TODO: import tables from "./schema"
async function seed() {
const db = getDb();
console.log("Seeding database...");
// TODO: insert seed data, e.g.
// await db.insert(schema.posts).values([
// { title: "First post", content: "Hello world" },
// ]);
console.log("Done.");
process.exit(0); // close MySQL connection pool
}
seed();