Skip to content

Commit

Permalink
Remove extra fields in create table statements
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
bethanyhipple-dbtlabs authored Dec 16, 2024
1 parent 4d2ef6d commit a7e7e1b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions website/docs/guides/redshift-qs.md
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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
);
```

Expand Down

0 comments on commit a7e7e1b

Please sign in to comment.