Add more options for featured adventures

This commit is contained in:
Sean Morley
2024-05-26 20:07:23 +00:00
parent 10bd897a55
commit 8888650c56
4 changed files with 111 additions and 8 deletions

View File

@@ -9,12 +9,6 @@ import {
integer,
} from "drizzle-orm/pg-core";
export const featuredAdventures = pgTable("featuredAdventures", {
id: serial("id").primaryKey(),
name: text("name").notNull().unique(),
location: text("location"),
});
export const sharedAdventures = pgTable("sharedAdventures", {
id: text("id").primaryKey(),
data: json("data").notNull(),