astro/db/seed.ts

10 lines
297 B
TypeScript
Raw Normal View History

2025-01-20 04:21:07 +00:00
import { db, Guestbook } from 'astro:db';
// https://astro.build/db/seed
export default async function seed() {
await db.insert(Guestbook).values([
{ username: "tester", website: "", body: "hey there!" },
{ username: "ayo", website: "https://google.com", body: "this is googlebot" },
]);
}