Add schema of common-data metadata tables #136
pg_dump -U postgres --schema-only --table=meta_dataset cartodb_user_db > meta_dataset.sql pg_dump -U postgres --schema-only --table=meta_category cartodb_user_db > meta_category.sql
This commit is contained in:
13
common-data/meta_category.sql
Normal file
13
common-data/meta_category.sql
Normal file
@@ -0,0 +1,13 @@
|
||||
--
|
||||
-- Name: meta_category; Type: TABLE; Schema: public
|
||||
--
|
||||
|
||||
CREATE TABLE meta_category (
|
||||
cartodb_id integer NOT NULL,
|
||||
name text,
|
||||
created_at timestamp with time zone DEFAULT now() NOT NULL,
|
||||
updated_at timestamp with time zone DEFAULT now() NOT NULL,
|
||||
the_geom geometry(Geometry,4326),
|
||||
the_geom_webmercator geometry(Geometry,3857),
|
||||
image_url text
|
||||
);
|
||||
Reference in New Issue
Block a user