1import { db, Users, Works } from "astro:db"; 2 3export default async function() { 4 await db.insert(Users).values([ 5 { id: 1, userDid: "test" }, 6 { id: 2, userDid: "another" }, 7 ]); 8 9 await db.insert(Works).values([ 10 { 11 author: "test", 12 title: "Hey there title", 13 content: "<p>i have evil html</p>", 14 tags: [{ label: "test", url: "#" }], 15 }, 16 { 17 author: "another", 18 title: "Hello world", 19 content: "<p>whoag i have <b>BOLD</b></p>", 20 tags: [{ label: "label", url: "#" }], 21 }, 22 ]); 23}