From 945cef70d41e93c9d3397c68e24af04c78760272 Mon Sep 17 00:00:00 2001 From: davidsr2r <61996931+davidsr2r@users.noreply.github.com> Date: Fri, 6 Jan 2023 12:23:29 +1100 Subject: [PATCH] Fix incompatibility with v1.3.0 Should fix the bug reported in: https://github.com/kristeligt-dagblad/dbt_ml/issues/40 as it's the recommended fix, but it should be checked. --- macros/hooks/model_audit.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/macros/hooks/model_audit.sql b/macros/hooks/model_audit.sql index bb59faf..74b4b36 100644 --- a/macros/hooks/model_audit.sql +++ b/macros/hooks/model_audit.sql @@ -3,7 +3,7 @@ {% do return ({ 'model': 'string', 'schema': 'string', - 'created_at': dbt_utils.type_timestamp(), + 'created_at': type_timestamp(), 'training_info': 'array>>>', 'feature_info': 'array>', 'weights': 'array>>>',