Initial commit: New MoreminiMore website with fresh design
This commit is contained in:
14
node_modules/drizzle-orm/neon/neon-identity.js
generated
vendored
Normal file
14
node_modules/drizzle-orm/neon/neon-identity.js
generated
vendored
Normal 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
|
||||
Reference in New Issue
Block a user