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:
15
node_modules/drizzle-orm/neon/neon-auth.js
generated
vendored
Normal file
15
node_modules/drizzle-orm/neon/neon-auth.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
import { jsonb, pgSchema, text, timestamp } from "../pg-core/index.js";
|
||||
const neonAuthSchema = pgSchema("neon_auth");
|
||||
const usersSync = neonAuthSchema.table("users_sync", {
|
||||
rawJson: jsonb("raw_json").notNull(),
|
||||
id: text().primaryKey().notNull(),
|
||||
name: text(),
|
||||
email: text(),
|
||||
createdAt: timestamp("created_at", { withTimezone: true, mode: "string" }),
|
||||
deletedAt: timestamp("deleted_at", { withTimezone: true, mode: "string" }),
|
||||
updatedAt: timestamp("updated_at", { withTimezone: true, mode: "string" })
|
||||
});
|
||||
export {
|
||||
usersSync
|
||||
};
|
||||
//# sourceMappingURL=neon-auth.js.map
|
||||
Reference in New Issue
Block a user