Initial commit: New MoreminiMore website with fresh design

This commit is contained in:
MoreminiMore
2026-04-22 01:59:05 +07:00
commit 76409638cc
14010 changed files with 2052041 additions and 0 deletions

14
node_modules/drizzle-orm/neon/neon-identity.js generated vendored Normal file
View File

@@ -0,0 +1,14 @@
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" })
});
export {
usersSync
};
//# sourceMappingURL=neon-identity.js.map