Remove singular/plural from field-metadata (#2085)

* Remove singular/plural from field-metadata

* revert removing id from create input

* remove console log

* remove console log

* codegen

* missing files

* fix tests
This commit is contained in:
Weiko
2023-10-17 15:21:58 +02:00
committed by GitHub
parent 0d6386bc8d
commit 1344e78acb
32 changed files with 213 additions and 130 deletions

View File

@ -116,17 +116,17 @@ export class MigrationRunnerService {
default: 'public.uuid_generate_v4()',
},
{
name: 'created_at',
name: 'createdAt',
type: 'timestamp',
default: 'now()',
},
{
name: 'updated_at',
name: 'updatedAt',
type: 'timestamp',
default: 'now()',
},
{
name: 'deleted_at',
name: 'deletedAt',
type: 'timestamp',
isNullable: true,
},