aboutsummaryrefslogtreecommitdiff
path: root/packages/db/test/fixtures/integrations/integration/seed.ts
blob: ed2b2e2ebf2b91680732b8805f94d4438a314295 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { db } from 'astro:db';
import { asDrizzleTable } from '@astrojs/db/utils';
import { menu } from './shared';

export default async function () {
	const table = asDrizzleTable('menu', menu);

	await db.insert(table).values([
		{ name: 'Pancakes', price: 9.5, type: 'Breakfast' },
		{ name: 'French Toast', price: 11.25, type: 'Breakfast' },
		{ name: 'Coffee', price: 3, type: 'Beverages' },
		{ name: 'Cappuccino', price: 4.5, type: 'Beverages' },
	]);
}