From a7e7e1bc9f6d9a850f4c13c790106c516d7ffa53 Mon Sep 17 00:00:00 2001 From: bethanyhipple-dbtlabs <108838013+bethanyhipple-dbtlabs@users.noreply.github.com> Date: Mon, 16 Dec 2024 14:58:14 -0800 Subject: [PATCH] Remove extra fields in create table statements The CSV files for orders and payment don't have _etl_loaded_at and batched_at respectively. So removing these fields from the create table statements. --- website/docs/guides/redshift-qs.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/website/docs/guides/redshift-qs.md b/website/docs/guides/redshift-qs.md index 83fafad1d12..8990c4db925 100644 --- a/website/docs/guides/redshift-qs.md +++ b/website/docs/guides/redshift-qs.md @@ -118,8 +118,7 @@ Now we are going to load our sample data into the S3 bucket that our Cloudformat id integer, user_id integer, order_date date, - status varchar(50), - _etl_loaded_at timestamp default current_timestamp + status varchar(50) ); create table stripe.payment( @@ -128,8 +127,7 @@ Now we are going to load our sample data into the S3 bucket that our Cloudformat paymentmethod varchar(50), status varchar(50), amount integer, - created date, - _batched_at timestamp default current_timestamp + created date ); ```