This file has been truncated, but you can view the full file.
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 IF NOT EXISTS public.bookstores ( | |
id UUID NOT NULL DEFAULT gen_random_uuid(), | |
name STRING NOT NULL, | |
url STRING NULL, | |
phone STRING NULL, | |
address STRING NOT NULL, | |
description STRING NULL, | |
geom GEOMETRY NULL, | |
CONSTRAINT "primary" PRIMARY KEY (id ASC), |