refactor(datamart): added public access

This commit is contained in:
2026-01-26 06:27:23 -06:00
parent ba4635a7a7
commit 152f7042c9
4 changed files with 838 additions and 0 deletions

View File

@@ -17,6 +17,7 @@ export const datamart = pgTable("datamart", {
version: integer("version").default(1).notNull(),
active: boolean("active").default(true),
options: text("options").default(""),
public: boolean("public_access").default(false),
add_date: timestamp("add_date").defaultNow(),
add_user: text("add_user").default("lst-system"),
upd_date: timestamp("upd_date").defaultNow(),