IT-Academy

Pokemoni Import

Dec 13th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. CREATE TABLE public.pokemoni
  2. (
  3.     cislo integer,
  4.     meno text,
  5.     typ1 text,
  6.     typ2 text,
  7.     celkovo integer,
  8.     "HP" integer,
  9.     utok integer,
  10.     obrana integer,
  11.     speci_utok integer,
  12.     speci_def integer,
  13.     rychlost integer,
  14.     generacia integer,
  15.     legendarny boolean
  16. )
  17. WITH (
  18.     OIDS = FALSE
  19. )
  20. TABLESPACE pg_default;
  21.  
  22. ALTER TABLE public.pokemoni
  23.     OWNER to postgres;
Advertisement
Add Comment
Please, Sign In to add comment