Remove userVisitedAdventuresTable
This commit is contained in:
@@ -53,16 +53,6 @@ export const sessionTable = pgTable("session", {
|
||||
}).notNull(),
|
||||
});
|
||||
|
||||
export const userVisitedAdventures = pgTable("userVisitedAdventures", {
|
||||
adventureID: serial("adventure_id").primaryKey(),
|
||||
userId: text("user_id")
|
||||
.notNull()
|
||||
.references(() => userTable.id),
|
||||
adventureName: text("adventure_name").notNull(),
|
||||
location: text("location"),
|
||||
visitedDate: text("visited_date"),
|
||||
});
|
||||
|
||||
export const worldTravelCountries = pgTable("worldTravelCountries", {
|
||||
id: serial("id").primaryKey(),
|
||||
name: text("name").notNull(),
|
||||
|
||||
Reference in New Issue
Block a user