Skip to content

Commit 42b8a94

Browse files
committed
fix: remove created_at from hierarchy_module export config
The created_at field was the only timestamptz column exported for any module table. Since it uses DEFAULT now(), it caused non-deterministic output in constructive-db's generate:constructive pipeline. No other module exports created_at — removing it for consistency and to eliminate the non-determinism source.
1 parent d0ba2da commit 42b8a94

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

pgpm/core/src/export/export-meta.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -671,8 +671,7 @@ const config: Record<string, TableConfig> = {
671671
rebuild_hierarchy_function: 'text',
672672
get_subordinates_function: 'text',
673673
get_managers_function: 'text',
674-
is_manager_of_function: 'text',
675-
created_at: 'timestamptz'
674+
is_manager_of_function: 'text'
676675
}
677676
},
678677
membership_types_module: {

0 commit comments

Comments
 (0)