Advertisement
Guest User

Untitled

a guest
Jul 1st, 2013
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
SQL 0.46 KB | None | 0 0
  1. // STRUCTURE FOR the TABLES (WITHOUT DATA) //
  2.  
  3. --Table 'evento_gurubashi_spawns'
  4.  
  5. CREATE TABLE `evento_gurubashi_spawns` (
  6.     `theme` INT (11),
  7.     `x` DOUBLE ,
  8.     `y` DOUBLE ,
  9.     `z` DOUBLE ,
  10.     `o` DOUBLE ,
  11.     `entry` INT (11)
  12. );
  13.  
  14. --Table 'evento_gurubashi_lastspawn'
  15.  
  16. CREATE TABLE `evento_gurubashi_lastspawn` (
  17.     `time` INT (11)
  18. );
  19.  
  20. --Table 'evento_gurubashi_reliquias'
  21.  
  22. CREATE TABLE `evento_gurubashi_reliquias` (
  23.     `id` INT (11),
  24.     `name` BLOB
  25. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement