import { db, Users, Works } from "astro:db"; export default async function() { await db.insert(Users).values([ { id: 1, userDid: "test" }, { id: 2, userDid: "another" }, ]); await db.insert(Works).values([ { slug: "1234", author: "test", title: "Hey there title", content: "

i have evil html

", tags: [{ label: "test", url: "#" }], }, { slug: "1235", author: "another", title: "Hello world", content: "

whoag i have BOLD

", tags: [{ label: "label", url: "#" }], }, ]); }