Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- CREATE TABLE public.pokemoni
- (
- cislo integer,
- meno text,
- typ1 text,
- typ2 text,
- celkovo integer,
- "HP" integer,
- utok integer,
- obrana integer,
- speci_utok integer,
- speci_def integer,
- rychlost integer,
- generacia integer,
- legendarny boolean
- )
- WITH (
- OIDS = FALSE
- )
- TABLESPACE pg_default;
- ALTER TABLE public.pokemoni
- OWNER to postgres;
Advertisement
Add Comment
Please, Sign In to add comment