Remove unnecessary database migration scripts and update info modal text

This commit is contained in:
Sean Morley
2024-04-13 19:48:53 +00:00
parent 11ace187a7
commit fd1b85609e
48 changed files with 134 additions and 5947 deletions

View File

@@ -66,4 +66,14 @@ export const worldTravelCountryRegions = pgTable("worldTravelCountryRegions", {
country_code: text("country_code")
.notNull()
.references(() => worldTravelCountries.country_code),
});
export const userVisitedWorldTravel = pgTable("userVisitedWorldTravel", {
id: serial("id").primaryKey(),
userId: text("user_id")
.notNull()
.references(() => userTable.id),
region_id: varchar("region_id")
.notNull()
.references(() => worldTravelCountryRegions.id),
});