916ad39176
Deploy to route.crispygoat.com / deploy (push) Failing after 3m1s
- Add MinIO/S3-compatible storage client (src/lib/storage.ts) with uploadObject, deleteObject, presigned URL helpers, and BUCKETS constant - Wire product images, brand logos, and water log photos to MinIO via the new storage client - Migrate forgot-password to Neon Auth (remove Supabase /auth/v1/recover call) - Migrate send-scheduled cron to direct Postgres + Resend (remove Supabase Edge Function proxy) - Add logoUrl to email types (OrderReceipt, Welcome, PasswordReset) and pass brand_settings.logo_url from all call sites - Update email templates to use dynamic logoUrl instead of hardcoded Supabase bucket URLs - Remove hardcoded Supabase URLs from TuxedoVideoHero, TuxedoAboutPage, TimeTrackingFieldClient; use brand_settings props + local public/ fallback - Download brand logos (3) and tuxedo-hero.mp4 (36MB) from Supabase bucket to public/ for local development - Add MinIO env vars to .env.example (endpoint, access key, secret, buckets) - Fix TimeTrackingFieldClient to destructure logoUrl and brandAccent props - Fix admin/users.ts logoUrl type (null → undefined for optional string) - Remove stale sb- cookie from wholesale-auth - Migrate tuxedo/about page to remove supabase import and use pool query for wholesale_settings lookup
116 lines
3.5 KiB
TypeScript
116 lines
3.5 KiB
TypeScript
/**
|
|
* Water Log. Source: `db/migrations/0001_init.sql`.
|
|
*/
|
|
import {
|
|
pgTable,
|
|
uuid,
|
|
text,
|
|
numeric,
|
|
boolean,
|
|
timestamp,
|
|
index,
|
|
} from "drizzle-orm/pg-core";
|
|
import { brands } from "./brands";
|
|
import { adminUsers } from "./brands";
|
|
|
|
export const waterHeadgates = pgTable(
|
|
"water_headgates",
|
|
{
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
brandId: uuid("brand_id")
|
|
.notNull()
|
|
.references(() => brands.id, { onDelete: "cascade" }),
|
|
name: text("name").notNull(),
|
|
active: boolean("active").notNull().default(true),
|
|
createdAt: timestamp("created_at", { withTimezone: true })
|
|
.notNull()
|
|
.defaultNow(),
|
|
},
|
|
);
|
|
|
|
export const waterIrrigators = pgTable(
|
|
"water_irrigators",
|
|
{
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
brandId: uuid("brand_id")
|
|
.notNull()
|
|
.references(() => brands.id, { onDelete: "cascade" }),
|
|
name: text("name").notNull(),
|
|
pinHash: text("pin_hash").notNull(),
|
|
languagePreference: text("language_preference")
|
|
.notNull()
|
|
.default("en"),
|
|
active: boolean("active").notNull().default(true),
|
|
lastUsedAt: timestamp("last_used_at", { withTimezone: true }),
|
|
createdAt: timestamp("created_at", { withTimezone: true })
|
|
.notNull()
|
|
.defaultNow(),
|
|
},
|
|
);
|
|
|
|
export const waterSessions = pgTable(
|
|
"water_sessions",
|
|
{
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
irrigatorId: uuid("irrigator_id")
|
|
.notNull()
|
|
.references(() => waterIrrigators.id, { onDelete: "cascade" }),
|
|
expiresAt: timestamp("expires_at", { withTimezone: true }).notNull(),
|
|
createdAt: timestamp("created_at", { withTimezone: true })
|
|
.notNull()
|
|
.defaultNow(),
|
|
},
|
|
);
|
|
|
|
export const waterLogEntries = pgTable(
|
|
"water_log_entries",
|
|
{
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
brandId: uuid("brand_id")
|
|
.notNull()
|
|
.references(() => brands.id, { onDelete: "cascade" }),
|
|
headgateId: uuid("headgate_id")
|
|
.notNull()
|
|
.references(() => waterHeadgates.id, { onDelete: "cascade" }),
|
|
irrigatorId: uuid("irrigator_id")
|
|
.notNull()
|
|
.references(() => waterIrrigators.id, { onDelete: "cascade" }),
|
|
measurement: numeric("measurement").notNull(),
|
|
unit: text("unit").notNull(),
|
|
notes: text("notes"),
|
|
submittedVia: text("submitted_via").notNull().default("app"),
|
|
loggedAt: timestamp("logged_at", { withTimezone: true })
|
|
.notNull()
|
|
.defaultNow(),
|
|
loggedBy: uuid("logged_by").references(() => adminUsers.id),
|
|
},
|
|
(t) => ({
|
|
brandIdx: index("water_log_entries_brand_idx").on(t.brandId),
|
|
headgateIdx: index("water_log_entries_headgate_idx").on(t.headgateId),
|
|
}),
|
|
);
|
|
|
|
export const waterAlertLog = pgTable(
|
|
"water_alert_log",
|
|
{
|
|
id: uuid("id").primaryKey().defaultRandom(),
|
|
brandId: uuid("brand_id")
|
|
.notNull()
|
|
.references(() => brands.id, { onDelete: "cascade" }),
|
|
alertType: text("alert_type").notNull(),
|
|
headgateId: uuid("headgate_id").references(() => waterHeadgates.id),
|
|
message: text("message").notNull(),
|
|
sentTo: text("sent_to"),
|
|
sentAt: timestamp("sent_at", { withTimezone: true }),
|
|
createdAt: timestamp("created_at", { withTimezone: true })
|
|
.notNull()
|
|
.defaultNow(),
|
|
},
|
|
);
|
|
|
|
export type WaterHeadgate = typeof waterHeadgates.$inferSelect;
|
|
export type WaterIrrigator = typeof waterIrrigators.$inferSelect;
|
|
export type WaterSession = typeof waterSessions.$inferSelect;
|
|
export type WaterLogEntry = typeof waterLogEntries.$inferSelect;
|
|
export type WaterAlertLog = typeof waterAlertLog.$inferSelect;
|