System Information
- Strapi Version: 4
- Operating System: mac os
- Database: postgres
- Node Version: v16.14.2
- NPM Version: 8.5.0
- Yarn Version: 1.22.19
Model has default attributes - timestamps and it looks like this -
{
...
createdAt: '2022-10-06T12:31:48.684Z',
updatedAt: '2022-10-06T12:31:50.587Z',
publishedAt: '2022-10-06T12:31:50.428Z',
...
}
and I would like to change for each model to this
{
...
created_at: '2022-10-06T12:31:48.684Z',
updated_at: '2022-10-06T12:31:50.587Z',
published_at: '2022-10-06T12:31:50.428Z',
...
}