Ark
Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
import { column, defineTable } from 'astro:db';
export const menu = defineTable({
columns: {
name: column.text(),
type: column.text(),
price: column.number(),
},
});