feat: Upgrade to Astro with full PDPA compliance
PDPA Features: ✅ Cookie consent banner ✅ Consent logging API ✅ Admin dashboard ✅ Privacy Policy ✅ Terms & Conditions Technical: ✅ Astro 5.x + Tailwind v4 ✅ Docker on port 80 ✅ SQLite database ✅ 15 pages built Ready for Easypanel deployment.
This commit is contained in:
32
node_modules/drizzle-orm/pg-core/roles.js
generated
vendored
Normal file
32
node_modules/drizzle-orm/pg-core/roles.js
generated
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
import { entityKind } from "../entity.js";
|
||||
class PgRole {
|
||||
constructor(name, config) {
|
||||
this.name = name;
|
||||
if (config) {
|
||||
this.createDb = config.createDb;
|
||||
this.createRole = config.createRole;
|
||||
this.inherit = config.inherit;
|
||||
}
|
||||
}
|
||||
static [entityKind] = "PgRole";
|
||||
/** @internal */
|
||||
_existing;
|
||||
/** @internal */
|
||||
createDb;
|
||||
/** @internal */
|
||||
createRole;
|
||||
/** @internal */
|
||||
inherit;
|
||||
existing() {
|
||||
this._existing = true;
|
||||
return this;
|
||||
}
|
||||
}
|
||||
function pgRole(name, config) {
|
||||
return new PgRole(name, config);
|
||||
}
|
||||
export {
|
||||
PgRole,
|
||||
pgRole
|
||||
};
|
||||
//# sourceMappingURL=roles.js.map
|
||||
Reference in New Issue
Block a user