fix example sql

This commit is contained in:
Trent Palmer 2021-01-09 19:40:01 -08:00
parent c523354d04
commit 9885d3190c
1 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ CREATE TABLE IF NOT EXISTS photo(
contributor_id INT NOT NULL,
timestamp TIMESTAMP WITHOUT TIME ZONE,
timestamp_int BIGINT,
photo_format CHAR(12),
photo_format VARCHAR(12),
photo_width INT,
photo_height INT,
photo_1280_width INT,
@ -57,7 +57,7 @@ CREATE TABLE IF NOT EXISTS photo(
ALTER TABLE photo ADD COLUMN IF NOT EXISTS contributor_id INT NOT NULL;
ALTER TABLE photo ADD COLUMN IF NOT EXISTS timestamp TIMESTAMP WITHOUT TIME ZONE;
ALTER TABLE photo ADD COLUMN IF NOT EXISTS timestamp_int BIGINT;
ALTER TABLE photo ADD COLUMN IF NOT EXISTS photo_format CHAR(12);
ALTER TABLE photo ADD COLUMN IF NOT EXISTS photo_format VARCHAR(12);
ALTER TABLE photo ADD COLUMN IF NOT EXISTS photo_width INT;
ALTER TABLE photo ADD COLUMN IF NOT EXISTS photo_height INT;
ALTER TABLE photo ADD COLUMN IF NOT EXISTS photo_1280_width INT;