Advertisement
Guest User

problema

a guest
Jan 20th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. create table Cards (
  2.  
  3. ID int(8) not null,
  4. Expansion_ varchar(10) not null,
  5. Category int(7) not null, -- magia/trappola/mostro
  6. Name_ varchar(30) not null,
  7. type_ varchar(20)not null, -- tipo del mostro/rapida/continua/normale/counter
  8. level_ int(2), -- solo per mostri va da 0 a 12
  9. Attribut varchar(20) not null, -- solo per i mostri terra/fuoco/acqua/luce/oscurita/vento/divinita
  10. sub_type1 varchar(25), -- solo per mostri
  11. sub_type2 varchar(25), -- solo per mostri
  12. sub_type3 varchar(25), -- solo per mostri
  13. sub_type4 varchar(25), -- solo per mostri
  14. atk int, -- solo per mostri
  15. def int, -- solo per mostri
  16. linkrate int, -- solo per link
  17. primary key (ID,Expansion_) );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement