mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
14 lines
410 B
TypeScript
14 lines
410 B
TypeScript
export default {
|
|
email: { type: 'string', primary: true, lowercase: true, email: true },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
verifiedAt: { type: 'string', isoDate: true },
|
|
nonce: { type: 'string', token: true },
|
|
belongsTo: {
|
|
type: 'relationship',
|
|
relationship: 'BELONGS_TO',
|
|
target: 'User',
|
|
direction: 'out',
|
|
eager: true,
|
|
},
|
|
}
|