mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
13 lines
395 B
JavaScript
13 lines
395 B
JavaScript
module.exports = {
|
|
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',
|
|
},
|
|
}
|