feat: naming strategy (#19848)

* feat: naming strategy

* feat: detect renames
This commit is contained in:
Jason Rasmussen 2025-07-11 11:35:10 -04:00 committed by GitHub
parent 1d19d308e2
commit 9e48ae3052
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
35 changed files with 517 additions and 127 deletions

View file

@ -13,6 +13,7 @@ describe(transformColumns.name, () => {
column: {
name: 'column1',
tableName: 'table1',
primary: false,
type: 'character varying',
nullable: false,
isArray: false,
@ -30,6 +31,7 @@ describe(transformColumns.name, () => {
column: {
name: 'column1',
tableName: 'table1',
primary: false,
type: 'character varying',
nullable: true,
isArray: false,
@ -47,6 +49,7 @@ describe(transformColumns.name, () => {
column: {
name: 'column1',
tableName: 'table1',
primary: false,
type: 'character varying',
enumName: 'table1_column1_enum',
nullable: true,
@ -65,6 +68,7 @@ describe(transformColumns.name, () => {
column: {
name: 'column1',
tableName: 'table1',
primary: false,
type: 'boolean',
nullable: true,
isArray: true,