mirror of
https://github.com/withastro/astro.git
synced 2025-02-03 22:29:08 -05:00
10 lines
175 B
TypeScript
10 lines
175 B
TypeScript
|
import { column, defineTable } from 'astro:db';
|
||
|
|
||
|
export const menu = defineTable({
|
||
|
columns: {
|
||
|
name: column.text(),
|
||
|
type: column.text(),
|
||
|
price: column.number(),
|
||
|
},
|
||
|
});
|