Skip to content

Commit

Permalink
Remove extra fields in create table statements (#6677)
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored Dec 17, 2024
2 parents d61fc8f + d8b8e90 commit 79ac1b3
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 79ac1b3

Please sign in to comment.