Add featuredAdventures table and related code
This commit is contained in:
9
src/lib/db/schema.ts
Normal file
9
src/lib/db/schema.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import { pgTable,serial,text } from "drizzle-orm/pg-core";
|
||||
|
||||
export const featuredAdventures = pgTable("featuredAdventures",{
|
||||
id:serial("id").primaryKey(),
|
||||
name:text("name").notNull(),
|
||||
location:text("location"),
|
||||
})
|
||||
|
||||
|
||||
Reference in New Issue
Block a user