Last active
November 5, 2022 13:48
-
-
Save waltton/0361ff9c6537d390fc78db9b6cc89ec0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Let's create a table, product_log, to capture the price changes over time | |
CREATE TABLE product_log ( | |
product_id UUID, | |
price NUMERIC, | |
date_updated TIMESTAMP(0) WITH TIME ZONE DEFAULT NOW() | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment