Skip to content

Commit

Permalink
removed unnecessary query.
Browse files Browse the repository at this point in the history
  • Loading branch information
elsongabriel committed Apr 29, 2024
1 parent edb41fd commit d674cf5
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -745,31 +745,6 @@ CREATE TABLE IF NOT EXISTS `player_storage` (
ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- Table structure `player_summary`
CREATE TABLE IF NOT EXISTS `player_summary` (
`player_id` int(11) NOT NULL,
`title` VARCHAR(250) NOT NULL DEFAULT '0',
`charms` VARCHAR(250) NOT NULL DEFAULT '0',
`goshnar` VARCHAR(250) NOT NULL DEFAULT '0',
`drome` VARCHAR(250) NOT NULL DEFAULT '0',
`xp_boosts` VARCHAR(250) NOT NULL DEFAULT '0',
`rewards_collection` VARCHAR(250) NOT NULL DEFAULT '0',
`prey_cards` VARCHAR(250) NOT NULL DEFAULT '0',
`hirelings` VARCHAR(250) NOT NULL DEFAULT '0',
`achievements_points` VARCHAR(250) NOT NULL DEFAULT '0',
`login_streak` VARCHAR(250) NOT NULL DEFAULT '0',
`task_points` VARCHAR(250) NOT NULL DEFAULT '0',
`map_area` VARCHAR(250) NOT NULL DEFAULT '0',
`hireling_outfits` BLOB NULL,
`hireling_jobs` BLOB NULL,
`house_items` BLOB NULL,
`blessings` BLOB NULL,
`achievements_unlockeds` BLOB NULL,
INDEX `player_id` (`player_id`),
FOREIGN KEY (`player_id`) REFERENCES `players` (`id`)
ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

-- Table structure `store_history`
CREATE TABLE IF NOT EXISTS `store_history` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit d674cf5

Please sign in to comment.