aboutsummaryrefslogtreecommitdiff
path: root/packages/db/test/fixtures/integrations/integration/shared.ts
blob: d46ae65a65366903a60eb48974d38919a77607d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
import { column, defineTable } from 'astro:db';

export const menu = defineTable({
	columns: {
		name: column.text(),
		type: column.text(),
		price: column.number(),
	},
});