Created
November 16, 2020 21:42
-
-
Save Breefield/8f13a3ebac988384b73c2e822d655057 to your computer and use it in GitHub Desktop.
This file contains 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
CREATE TABLE inventory ( | |
id SERIAL PRIMARY KEY, | |
item VARCHAR(255) NOT NULL, | |
price INTEGER NOT NULL, | |
created_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, | |
updated_on TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment