Add Cloudflare proxy status to DNS records

Replit-Commit-Author: Agent
Replit-Commit-Session-Id: 9111ef36-26c8-4085-84ca-a35dc1fec1b5
Replit-Commit-Screenshot-Url: https://storage.googleapis.com/screenshot-production-us-central1/7083d608-d6d3-4a6a-9a27-6286c5109627/d6f95f52-7a28-482c-9f7b-831d0afbfa0a.jpg
This commit is contained in:
alphaeusmote
2025-04-11 04:07:46 +00:00
+1
View File
@@ -63,6 +63,7 @@ export const dnsRecords = pgTable("dns_records", {
notes: text("notes"),
isActive: boolean("is_active").default(true).notNull(),
isAutoIP: boolean("auto_update").default(false).notNull(), // renamed to match database column
proxied: boolean("proxied").default(false), // For Cloudflare proxy setting
lastUpdated: timestamp("last_updated"),
createdAt: timestamp("created_at").defaultNow().notNull(),
});