You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
minor-sql-2022/data/scheme.sql

19 lines
411 B

-- BE CAREFUL THIS FILE IS AUTOGENERATED
-- Table: public.rice_data
-- DROP TABLE IF EXISTS public.rice_data;
CREATE TABLE IF NOT EXISTS public.rice_data
(
id integer NOT NULL,
"Area" bigint,
"Roundness" numeric,
"AspectRation" numeric,
"Class" integer,
CONSTRAINT rice_data_pkey PRIMARY KEY (id)
)
TABLESPACE pg_default;
ALTER TABLE IF EXISTS public.rice_data
OWNER to pgadmin;