mattwr18 c6bfca312c Favor createdAt over timestamp
- it's more human readable and consistent with all other nodes in
  production
2020-01-22 13:31:48 +01:00

6 lines
200 B
JavaScript

export default {
title: { type: 'string', primary: true, token: true },
description: { type: 'string' },
createdAt: { type: 'string', isoDate: true, default: () => new Date().toISOString() },
}