Add name and date columns to sharedAdventures table and display them in shared adventure page
This commit is contained in:
@@ -16,6 +16,8 @@ export const featuredAdventures = pgTable("featuredAdventures", {
|
||||
export const sharedAdventures = pgTable("sharedAdventures", {
|
||||
id: text("id").primaryKey(),
|
||||
data: json("data").notNull(),
|
||||
name: text("name").notNull(),
|
||||
date: text("date").notNull(),
|
||||
});
|
||||
|
||||
export const userTable = pgTable("user", {
|
||||
|
||||
Reference in New Issue
Block a user