mirror of
https://github.com/seanmorley15/AdventureLog.git
synced 2025-07-25 07:49:37 +02:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
|
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"),
|
||
|
})
|
||
|
|
||
|
|