add db
This commit is contained in:
6
db/config.ts
Normal file
6
db/config.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { defineDb } from 'astro:db';
|
||||
|
||||
// https://astro.build/db/config
|
||||
export default defineDb({
|
||||
tables: {}
|
||||
});
|
||||
6
db/seed.ts
Normal file
6
db/seed.ts
Normal file
@@ -0,0 +1,6 @@
|
||||
import { db } from 'astro:db';
|
||||
|
||||
// https://astro.build/db/seed
|
||||
export default async function seed() {
|
||||
// TODO
|
||||
}
|
||||
Reference in New Issue
Block a user