mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
18 lines
448 B
JavaScript
18 lines
448 B
JavaScript
export default {
|
|
code: { type: 'string', primary: true },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
expiresAt: { type: 'string', isoDate: true, default: null },
|
|
generated: {
|
|
type: 'relationship',
|
|
relationship: 'GENERATED',
|
|
target: 'User',
|
|
direction: 'in',
|
|
},
|
|
redeemed: {
|
|
type: 'relationship',
|
|
relationship: 'REDEEMED',
|
|
target: 'User',
|
|
direction: 'in',
|
|
},
|
|
}
|