mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
8 lines
338 B
JavaScript
8 lines
338 B
JavaScript
module.exports = {
|
|
id: { type: 'string', primary: true, lowercase: true },
|
|
status: { type: 'string', valid: ['permanent', 'temporary'] },
|
|
type: { type: 'string', valid: ['role', 'crowdfunding'] },
|
|
icon: { type: 'string', required: true },
|
|
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
|
|
}
|