spiritshards_xpdebt_feb7_2021.sql 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. alter table character_details modify column xp_debt float not null default 0.0;
  2. CREATE TABLE `character_spirit_shards` (
  3. `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  4. `timestamp` BIGINT signed NOT NULL DEFAULT CURRENT_TIMESTAMP,
  5. `name` varchar(64) not null default '',
  6. `level` int(10) unsigned NOT NULL DEFAULT 0,
  7. `race` tinyint(3) unsigned NOT NULL DEFAULT 0,
  8. `gender` tinyint(3) unsigned NOT NULL DEFAULT 0,
  9. `adventure_class` tinyint(3) unsigned NOT NULL DEFAULT 0,
  10. `model_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  11. `soga_model_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  12. `hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  13. `hair_face_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  14. `wing_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  15. `chest_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  16. `legs_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  17. `soga_hair_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  18. `soga_hair_face_type` mediumint(8) unsigned NOT NULL DEFAULT 0,
  19. `hide_hood` tinyint(3) unsigned NOT NULL DEFAULT 0,
  20. `size` mediumint(8) unsigned NOT NULL DEFAULT 0,
  21. `collision_radius` mediumint(8) unsigned NOT NULL DEFAULT 0,
  22. `action_state` mediumint(8) unsigned NOT NULL DEFAULT 0,
  23. `visual_state` mediumint(8) unsigned NOT NULL DEFAULT 0,
  24. `mood_state` mediumint(8) unsigned NOT NULL DEFAULT 0,
  25. `emote_state` mediumint(8) unsigned NOT NULL DEFAULT 0,
  26. `pos_state` mediumint(8) unsigned NOT NULL DEFAULT 0,
  27. `activity_status` mediumint(8) unsigned NOT NULL DEFAULT 0,
  28. `sub_title` varchar(255) not null default '',
  29. `prefix_title` varchar(128) not null default '',
  30. `suffix_title` varchar(128) not null default '',
  31. `lastname` varchar(64) not null default '',
  32. `x` float not null default 0.0,
  33. `y` float not null default 0.0,
  34. `z` float not null default 0.0,
  35. `heading` float not null default 0.0,
  36. `gridid` int(10) unsigned NOT NULL DEFAULT 0,
  37. `zoneid` int(10) unsigned NOT NULL DEFAULT 0,
  38. `instanceid` int(10) unsigned NOT NULL DEFAULT 0,
  39. `charid` int(10) unsigned NOT NULL DEFAULT 0,
  40. PRIMARY KEY (`id`)
  41. ) ENGINE=InnoDB DEFAULT CHARSET=latin1;