Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- phpMyAdmin SQL Dump
- -- version 3.2.4
- -- http://www.phpmyadmin.net
- --
- -- Servidor: localhost
- -- Tempo de Geração: Jul 02, 2015 as 09:41
- -- Versão do Servidor: 5.1.41
- -- Versão do PHP: 5.3.1
- SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
- /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
- /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
- /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
- /*!40101 SET NAMES utf8 */;
- --
- -- Banco de Dados: `tfs`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `accounts`
- --
- CREATE TABLE IF NOT EXISTS `accounts` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(32) NOT NULL,
- `password` char(40) NOT NULL,
- `type` int(11) NOT NULL DEFAULT '1',
- `premdays` int(11) NOT NULL DEFAULT '0',
- `lastday` int(10) unsigned NOT NULL DEFAULT '0',
- `email` varchar(255) NOT NULL DEFAULT '',
- `creation` int(11) NOT NULL DEFAULT '0',
- `page_access` int(11) DEFAULT NULL,
- `page_lastday` int(11) DEFAULT NULL,
- `email_new` varchar(255) DEFAULT NULL,
- `email_new_time` int(15) DEFAULT NULL,
- `rlname` varchar(255) DEFAULT NULL,
- `location` varchar(255) DEFAULT NULL,
- `created` int(16) DEFAULT NULL,
- `email_code` varchar(255) DEFAULT NULL,
- `next_email` int(11) DEFAULT NULL,
- `premium_points` int(11) DEFAULT NULL,
- `nickname` char(48) DEFAULT NULL,
- `avatar` char(48) DEFAULT NULL,
- `about_me` text,
- `key` varchar(128) NOT NULL DEFAULT '',
- `blocked` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `name` (`name`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=3 ;
- --
- -- Extraindo dados da tabela `accounts`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `account_bans`
- --
- CREATE TABLE IF NOT EXISTS `account_bans` (
- `account_id` int(11) NOT NULL,
- `reason` varchar(255) NOT NULL,
- `banned_at` bigint(20) NOT NULL,
- `expires_at` bigint(20) NOT NULL,
- `banned_by` int(11) NOT NULL,
- PRIMARY KEY (`account_id`),
- KEY `banned_by` (`banned_by`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `account_bans`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `account_ban_history`
- --
- CREATE TABLE IF NOT EXISTS `account_ban_history` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `account_id` int(11) NOT NULL,
- `reason` varchar(255) NOT NULL,
- `banned_at` bigint(20) NOT NULL,
- `expired_at` bigint(20) NOT NULL,
- `banned_by` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `account_id` (`account_id`),
- KEY `banned_by` (`banned_by`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `account_ban_history`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `account_viplist`
- --
- CREATE TABLE IF NOT EXISTS `account_viplist` (
- `account_id` int(11) NOT NULL COMMENT 'id of account whose viplist entry it is',
- `player_id` int(11) NOT NULL COMMENT 'id of target player of viplist entry',
- `description` varchar(128) NOT NULL DEFAULT '',
- `icon` tinyint(2) unsigned NOT NULL DEFAULT '0',
- `notify` tinyint(1) NOT NULL DEFAULT '0',
- UNIQUE KEY `account_player_index` (`account_id`,`player_id`),
- KEY `player_id` (`player_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `account_viplist`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `bans`
- --
- CREATE TABLE IF NOT EXISTS `bans` (
- `id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `bans`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `bugtracker`
- --
- CREATE TABLE IF NOT EXISTS `bugtracker` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `category` int(3) NOT NULL,
- `time` int(11) DEFAULT NULL,
- `author` int(11) NOT NULL,
- `text` text,
- `title` varchar(120) DEFAULT NULL,
- `done` tinyint(3) DEFAULT NULL,
- `priority` tinyint(3) DEFAULT NULL,
- `closed` tinyint(1) DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `author` (`author`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `bugtracker`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `comments`
- --
- CREATE TABLE IF NOT EXISTS `comments` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `news_id` int(11) DEFAULT NULL,
- `body` text,
- `time` int(11) DEFAULT '0',
- `author` int(11) DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `news_id` (`news_id`),
- KEY `author` (`author`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `comments`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `forums`
- --
- CREATE TABLE IF NOT EXISTS `forums` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(120) DEFAULT NULL,
- `description` tinytext,
- `access` smallint(5) DEFAULT '1' COMMENT 'Min. access to see the board',
- `closed` tinyint(1) DEFAULT NULL,
- `moderators` tinytext,
- `order` int(6) DEFAULT NULL,
- `requireLogin` tinyint(1) DEFAULT NULL,
- `guild` int(11) DEFAULT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `forums`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `friends`
- --
- CREATE TABLE IF NOT EXISTS `friends` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `with` int(11) DEFAULT NULL,
- `friend` int(11) DEFAULT NULL,
- `time` int(11) DEFAULT NULL,
- `active` tinyint(1) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `with` (`with`),
- KEY `friend` (`friend`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `friends`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `guilds`
- --
- CREATE TABLE IF NOT EXISTS `guilds` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `world_id` int(11) NOT NULL,
- `name` varchar(255) NOT NULL,
- `ownerid` int(11) NOT NULL,
- `creationdata` int(11) NOT NULL,
- `motd` varchar(255) NOT NULL DEFAULT '',
- PRIMARY KEY (`id`),
- UNIQUE KEY `name` (`name`),
- UNIQUE KEY `ownerid` (`ownerid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `guilds`
- --
- --
- -- Gatilhos `guilds`
- --
- DROP TRIGGER IF EXISTS `oncreate_guilds`;
- DELIMITER //
- CREATE TRIGGER `oncreate_guilds` AFTER INSERT ON `guilds`
- FOR EACH ROW BEGIN
- INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`);
- INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`);
- INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`);
- END
- //
- DELIMITER ;
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `guildwar_kills`
- --
- CREATE TABLE IF NOT EXISTS `guildwar_kills` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `killer` varchar(50) NOT NULL,
- `target` varchar(50) NOT NULL,
- `killerguild` int(11) NOT NULL DEFAULT '0',
- `targetguild` int(11) NOT NULL DEFAULT '0',
- `warid` int(11) NOT NULL DEFAULT '0',
- `time` bigint(15) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `warid` (`warid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `guildwar_kills`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `guild_invites`
- --
- CREATE TABLE IF NOT EXISTS `guild_invites` (
- `player_id` int(11) NOT NULL DEFAULT '0',
- `guild_id` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`player_id`,`guild_id`),
- KEY `guild_id` (`guild_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `guild_invites`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `guild_membership`
- --
- CREATE TABLE IF NOT EXISTS `guild_membership` (
- `player_id` int(11) NOT NULL,
- `guild_id` int(11) NOT NULL,
- `rank_id` int(11) NOT NULL,
- `nick` varchar(15) NOT NULL DEFAULT '',
- PRIMARY KEY (`player_id`),
- KEY `guild_id` (`guild_id`),
- KEY `rank_id` (`rank_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `guild_membership`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `guild_ranks`
- --
- CREATE TABLE IF NOT EXISTS `guild_ranks` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `guild_id` int(11) NOT NULL COMMENT 'guild',
- `name` varchar(255) NOT NULL COMMENT 'rank name',
- `level` int(11) NOT NULL COMMENT 'rank level - leader, vice, member, maybe something else',
- PRIMARY KEY (`id`),
- KEY `guild_id` (`guild_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `guild_ranks`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `guild_wars`
- --
- CREATE TABLE IF NOT EXISTS `guild_wars` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `guild1` int(11) NOT NULL DEFAULT '0',
- `guild2` int(11) NOT NULL DEFAULT '0',
- `name1` varchar(255) NOT NULL,
- `name2` varchar(255) NOT NULL,
- `status` tinyint(2) NOT NULL DEFAULT '0',
- `started` bigint(15) NOT NULL DEFAULT '0',
- `ended` bigint(15) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `guild1` (`guild1`),
- KEY `guild2` (`guild2`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `guild_wars`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `houses`
- --
- CREATE TABLE IF NOT EXISTS `houses` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `owner` int(11) NOT NULL,
- `paid` int(10) unsigned NOT NULL DEFAULT '0',
- `warnings` int(11) NOT NULL DEFAULT '0',
- `name` varchar(255) NOT NULL,
- `rent` int(11) NOT NULL DEFAULT '0',
- `town_id` int(11) NOT NULL DEFAULT '0',
- `bid` int(11) NOT NULL DEFAULT '0',
- `bid_end` int(11) NOT NULL DEFAULT '0',
- `last_bid` int(11) NOT NULL DEFAULT '0',
- `highest_bidder` int(11) NOT NULL DEFAULT '0',
- `size` int(11) NOT NULL DEFAULT '0',
- `beds` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `owner` (`owner`),
- KEY `town_id` (`town_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `houses`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `house_lists`
- --
- CREATE TABLE IF NOT EXISTS `house_lists` (
- `house_id` int(11) NOT NULL,
- `listid` int(11) NOT NULL,
- `list` text NOT NULL,
- KEY `house_id` (`house_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `house_lists`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `ip_bans`
- --
- CREATE TABLE IF NOT EXISTS `ip_bans` (
- `ip` int(10) unsigned NOT NULL,
- `reason` varchar(255) NOT NULL,
- `banned_at` bigint(20) NOT NULL,
- `expires_at` bigint(20) NOT NULL,
- `banned_by` int(11) NOT NULL,
- PRIMARY KEY (`ip`),
- KEY `banned_by` (`banned_by`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `ip_bans`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `killers`
- --
- CREATE TABLE IF NOT EXISTS `killers` (
- `id` int(11) NOT NULL,
- `final_hit` int(11) NOT NULL,
- `unjustified` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `killers`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `live_casts`
- --
- CREATE TABLE IF NOT EXISTS `live_casts` (
- `player_id` int(11) NOT NULL,
- `cast_name` varchar(255) NOT NULL,
- `password` tinyint(1) NOT NULL DEFAULT '0',
- `description` varchar(255) DEFAULT NULL,
- `spectators` smallint(5) DEFAULT '0',
- UNIQUE KEY `player_id_2` (`player_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `live_casts`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `market_history`
- --
- CREATE TABLE IF NOT EXISTS `market_history` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `player_id` int(11) NOT NULL,
- `sale` tinyint(1) NOT NULL DEFAULT '0',
- `itemtype` int(10) unsigned NOT NULL,
- `amount` smallint(5) unsigned NOT NULL,
- `price` int(10) unsigned NOT NULL DEFAULT '0',
- `expires_at` bigint(20) unsigned NOT NULL,
- `inserted` bigint(20) unsigned NOT NULL,
- `state` tinyint(1) unsigned NOT NULL,
- PRIMARY KEY (`id`),
- KEY `player_id` (`player_id`,`sale`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `market_history`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `market_offers`
- --
- CREATE TABLE IF NOT EXISTS `market_offers` (
- `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
- `player_id` int(11) NOT NULL,
- `sale` tinyint(1) NOT NULL DEFAULT '0',
- `itemtype` int(10) unsigned NOT NULL,
- `amount` smallint(5) unsigned NOT NULL,
- `created` bigint(20) unsigned NOT NULL,
- `anonymous` tinyint(1) NOT NULL DEFAULT '0',
- `price` int(10) unsigned NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `sale` (`sale`,`itemtype`),
- KEY `created` (`created`),
- KEY `player_id` (`player_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `market_offers`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `messages`
- --
- CREATE TABLE IF NOT EXISTS `messages` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `from` int(11) DEFAULT NULL,
- `to` int(11) DEFAULT NULL,
- `title` varchar(120) DEFAULT NULL,
- `text` tinytext,
- `time` int(11) DEFAULT NULL,
- `delete_from` tinyint(1) DEFAULT NULL,
- `delete_to` tinyint(1) DEFAULT NULL,
- `unread` tinyint(1) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `from` (`from`),
- KEY `to` (`to`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `messages`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `news`
- --
- CREATE TABLE IF NOT EXISTS `news` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `title` varchar(150) DEFAULT '',
- `body` text,
- `time` int(11) DEFAULT '0',
- PRIMARY KEY (`id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `news`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `players`
- --
- CREATE TABLE IF NOT EXISTS `players` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(255) NOT NULL,
- `group_id` int(11) NOT NULL DEFAULT '1',
- `account_id` int(11) NOT NULL DEFAULT '0',
- `level` int(11) NOT NULL DEFAULT '1',
- `vocation` int(11) NOT NULL DEFAULT '0',
- `health` int(11) NOT NULL DEFAULT '150',
- `healthmax` int(11) NOT NULL DEFAULT '150',
- `experience` bigint(20) NOT NULL DEFAULT '0',
- `lookbody` int(11) NOT NULL DEFAULT '0',
- `lookfeet` int(11) NOT NULL DEFAULT '0',
- `lookhead` int(11) NOT NULL DEFAULT '0',
- `looklegs` int(11) NOT NULL DEFAULT '0',
- `looktype` int(11) NOT NULL DEFAULT '136',
- `lookaddons` int(11) NOT NULL DEFAULT '0',
- `maglevel` int(11) NOT NULL DEFAULT '0',
- `mana` int(11) NOT NULL DEFAULT '0',
- `manamax` int(11) NOT NULL DEFAULT '0',
- `manaspent` int(11) unsigned NOT NULL DEFAULT '0',
- `soul` int(10) unsigned NOT NULL DEFAULT '0',
- `town_id` int(11) NOT NULL DEFAULT '0',
- `posx` int(11) NOT NULL DEFAULT '1026',
- `posy` int(11) NOT NULL DEFAULT '982',
- `posz` int(11) NOT NULL DEFAULT '7',
- `conditions` blob NOT NULL,
- `cap` int(11) NOT NULL DEFAULT '0',
- `sex` int(11) NOT NULL DEFAULT '0',
- `lastlogin` bigint(20) unsigned NOT NULL DEFAULT '0',
- `lastip` int(10) unsigned NOT NULL DEFAULT '0',
- `save` tinyint(1) NOT NULL DEFAULT '1',
- `skull` tinyint(1) NOT NULL DEFAULT '0',
- `skulltime` int(11) NOT NULL DEFAULT '0',
- `lastlogout` bigint(20) unsigned NOT NULL DEFAULT '0',
- `blessings` tinyint(2) NOT NULL DEFAULT '0',
- `onlinetime` int(11) NOT NULL DEFAULT '0',
- `deletion` bigint(15) NOT NULL DEFAULT '0',
- `balance` bigint(20) unsigned NOT NULL DEFAULT '0',
- `offlinetraining_time` smallint(5) unsigned NOT NULL DEFAULT '43200',
- `offlinetraining_skill` int(11) NOT NULL DEFAULT '-1',
- `stamina` smallint(5) unsigned NOT NULL DEFAULT '2520',
- `skill_fist` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_fist_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `skill_club` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_club_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `skill_sword` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_sword_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `skill_axe` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_axe_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `skill_dist` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_dist_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `skill_shielding` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_shielding_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `skill_fishing` int(10) unsigned NOT NULL DEFAULT '10',
- `skill_fishing_tries` bigint(20) unsigned NOT NULL DEFAULT '0',
- `old_name` varchar(255) DEFAULT NULL,
- `hide_char` int(11) DEFAULT NULL,
- `worldtransfer` int(11) DEFAULT NULL,
- `created` int(16) DEFAULT NULL,
- `nick_verify` int(11) DEFAULT NULL,
- `comment` text,
- `world_id` int(11) NOT NULL,
- `rank_id` int(11) NOT NULL,
- `guildnick` int(11) NOT NULL,
- `direction` int(11) NOT NULL,
- `loss_experience` int(11) NOT NULL,
- `loss_mana` int(11) NOT NULL,
- `loss_skills` int(11) NOT NULL,
- `loss_containers` int(11) NOT NULL,
- `loss_items` int(11) NOT NULL,
- `premend` int(11) NOT NULL,
- `online` int(11) NOT NULL,
- `marriage` int(11) NOT NULL,
- `promotion` int(11) NOT NULL,
- `deleted` int(11) NOT NULL,
- `description` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- UNIQUE KEY `name` (`name`),
- KEY `vocation` (`vocation`),
- KEY `account_id` (`account_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=76 ;
- --
- -- Extraindo dados da tabela `players`
- -- Gatilhos `players`
- --
- DROP TRIGGER IF EXISTS `ondelete_players`;
- DELIMITER //
- CREATE TRIGGER `ondelete_players` BEFORE DELETE ON `players`
- FOR EACH ROW BEGIN
- UPDATE `houses` SET `owner` = 0 WHERE `owner` = OLD.`id`;
- END
- //
- DELIMITER ;
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `players_online`
- --
- CREATE TABLE IF NOT EXISTS `players_online` (
- `player_id` int(11) NOT NULL,
- PRIMARY KEY (`player_id`)
- ) ENGINE=MEMORY DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `players_online`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_deaths`
- --
- CREATE TABLE IF NOT EXISTS `player_deaths` (
- `player_id` int(11) NOT NULL,
- `time` bigint(20) unsigned NOT NULL DEFAULT '0',
- `level` int(11) NOT NULL DEFAULT '1',
- `killed_by` varchar(255) NOT NULL,
- `is_player` tinyint(1) NOT NULL DEFAULT '1',
- `mostdamage_by` varchar(100) NOT NULL,
- `mostdamage_is_player` tinyint(1) NOT NULL DEFAULT '0',
- `unjustified` tinyint(1) NOT NULL DEFAULT '0',
- `mostdamage_unjustified` tinyint(1) NOT NULL DEFAULT '0',
- KEY `player_id` (`player_id`),
- KEY `killed_by` (`killed_by`),
- KEY `mostdamage_by` (`mostdamage_by`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_deaths`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_depotitems`
- --
- CREATE TABLE IF NOT EXISTS `player_depotitems` (
- `player_id` int(11) NOT NULL,
- `sid` int(11) NOT NULL COMMENT 'any given range eg 0-100 will be reserved for depot lockers and all > 100 will be then normal items inside depots',
- `pid` int(11) NOT NULL DEFAULT '0',
- `itemtype` smallint(6) NOT NULL,
- `count` smallint(5) NOT NULL DEFAULT '0',
- `attributes` blob NOT NULL,
- UNIQUE KEY `player_id_2` (`player_id`,`sid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_depotitems`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_inboxitems`
- --
- CREATE TABLE IF NOT EXISTS `player_inboxitems` (
- `player_id` int(11) NOT NULL,
- `sid` int(11) NOT NULL,
- `pid` int(11) NOT NULL DEFAULT '0',
- `itemtype` smallint(6) NOT NULL,
- `count` smallint(5) NOT NULL DEFAULT '0',
- `attributes` blob NOT NULL,
- UNIQUE KEY `player_id_2` (`player_id`,`sid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_inboxitems`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_items`
- --
- CREATE TABLE IF NOT EXISTS `player_items` (
- `player_id` int(11) NOT NULL DEFAULT '0',
- `pid` int(11) NOT NULL DEFAULT '0',
- `sid` int(11) NOT NULL DEFAULT '0',
- `itemtype` smallint(6) NOT NULL DEFAULT '0',
- `count` smallint(5) NOT NULL DEFAULT '0',
- `attributes` blob NOT NULL,
- KEY `player_id` (`player_id`),
- KEY `sid` (`sid`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_items`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_killers`
- --
- CREATE TABLE IF NOT EXISTS `player_killers` (
- `id` int(11) NOT NULL,
- `player_id` int(11) NOT NULL,
- `kill_id` int(11) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_killers`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_namelocks`
- --
- CREATE TABLE IF NOT EXISTS `player_namelocks` (
- `player_id` int(11) NOT NULL,
- `reason` varchar(255) NOT NULL,
- `namelocked_at` bigint(20) NOT NULL,
- `namelocked_by` int(11) NOT NULL,
- PRIMARY KEY (`player_id`),
- KEY `namelocked_by` (`namelocked_by`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_namelocks`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_skills`
- --
- CREATE TABLE IF NOT EXISTS `player_skills` (
- `id` int(11) NOT NULL,
- `skillid` int(11) NOT NULL,
- `value` int(11) NOT NULL,
- `count` int(11) NOT NULL,
- `player_id` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `player_id` (`player_id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_skills`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_spells`
- --
- CREATE TABLE IF NOT EXISTS `player_spells` (
- `player_id` int(11) NOT NULL,
- `name` varchar(255) NOT NULL,
- KEY `player_id` (`player_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_spells`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `player_storage`
- --
- CREATE TABLE IF NOT EXISTS `player_storage` (
- `player_id` int(11) NOT NULL DEFAULT '0',
- `key` int(10) unsigned NOT NULL DEFAULT '0',
- `value` int(11) NOT NULL DEFAULT '0',
- PRIMARY KEY (`player_id`,`key`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `player_storage`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `poll`
- --
- CREATE TABLE IF NOT EXISTS `poll` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `question` varchar(150) DEFAULT NULL,
- `created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
- `date_start` datetime DEFAULT NULL,
- `date_end` datetime DEFAULT NULL,
- `status` tinyint(1) NOT NULL DEFAULT '0',
- PRIMARY KEY (`id`),
- KEY `question` (`question`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `poll`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `poll_answer`
- --
- CREATE TABLE IF NOT EXISTS `poll_answer` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `poll_id` int(11) NOT NULL,
- `answer` varchar(150) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `poll_id` (`poll_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `poll_answer`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `poll_votes`
- --
- CREATE TABLE IF NOT EXISTS `poll_votes` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `answer_id` int(11) DEFAULT NULL,
- `poll_id` int(11) DEFAULT NULL,
- `account_id` int(11) NOT NULL,
- PRIMARY KEY (`id`),
- KEY `answer_id` (`answer_id`),
- KEY `poll_id` (`poll_id`),
- KEY `account_id` (`account_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `poll_votes`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `posts`
- --
- CREATE TABLE IF NOT EXISTS `posts` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `title` varchar(120) DEFAULT NULL,
- `text` text,
- `time` int(11) DEFAULT NULL,
- `author` varchar(64) DEFAULT NULL,
- `board_id` int(11) DEFAULT NULL,
- `thread_id` int(11) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `board_id` (`board_id`),
- KEY `thread_id` (`thread_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `posts`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `server_config`
- --
- CREATE TABLE IF NOT EXISTS `server_config` (
- `config` varchar(50) NOT NULL,
- `value` varchar(256) NOT NULL DEFAULT '',
- PRIMARY KEY (`config`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `server_config`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `server_motd`
- --
- CREATE TABLE IF NOT EXISTS `server_motd` (
- `id` int(11) NOT NULL,
- `text` varchar(60) NOT NULL,
- PRIMARY KEY (`id`)
- ) ENGINE=MyISAM DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `server_motd`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `threads`
- --
- CREATE TABLE IF NOT EXISTS `threads` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `name` varchar(120) DEFAULT NULL,
- `sticked` tinyint(1) DEFAULT NULL,
- `closed` tinyint(1) DEFAULT NULL,
- `author` varchar(64) DEFAULT NULL,
- `time` int(11) DEFAULT NULL,
- `board_id` int(11) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `board_id` (`board_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `threads`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `tile_store`
- --
- CREATE TABLE IF NOT EXISTS `tile_store` (
- `house_id` int(11) NOT NULL,
- `data` longblob NOT NULL,
- KEY `house_id` (`house_id`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
- --
- -- Extraindo dados da tabela `tile_store`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `videos`
- --
- CREATE TABLE IF NOT EXISTS `videos` (
- `id` int(11) NOT NULL AUTO_INCREMENT,
- `author` int(11) DEFAULT NULL,
- `title` varchar(120) DEFAULT NULL,
- `description` tinytext,
- `youtube` varchar(45) DEFAULT NULL,
- `views` int(11) DEFAULT NULL,
- `time` int(11) DEFAULT NULL,
- PRIMARY KEY (`id`),
- KEY `author` (`author`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `videos`
- --
- -- --------------------------------------------------------
- --
- -- Estrutura da tabela `video_comments`
- --
- CREATE TABLE IF NOT EXISTS `video_comments` (
- `id` int(10) NOT NULL AUTO_INCREMENT,
- `author` int(11) DEFAULT NULL,
- `video` int(11) DEFAULT NULL,
- `time` int(11) DEFAULT NULL,
- `text` tinytext,
- PRIMARY KEY (`id`),
- KEY `video` (`video`),
- KEY `author` (`author`)
- ) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
- --
- -- Extraindo dados da tabela `video_comments`
- --
- --
- -- Restrições para as tabelas dumpadas
- --
- --
- -- Restrições para a tabela `account_bans`
- --
- ALTER TABLE `account_bans`
- ADD CONSTRAINT `account_bans_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
- ADD CONSTRAINT `account_bans_ibfk_2` FOREIGN KEY (`banned_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
- --
- -- Restrições para a tabela `account_ban_history`
- --
- ALTER TABLE `account_ban_history`
- ADD CONSTRAINT `account_ban_history_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
- ADD CONSTRAINT `account_ban_history_ibfk_2` FOREIGN KEY (`banned_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
- --
- -- Restrições para a tabela `account_viplist`
- --
- ALTER TABLE `account_viplist`
- ADD CONSTRAINT `account_viplist_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `account_viplist_ibfk_2` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `bugtracker`
- --
- ALTER TABLE `bugtracker`
- ADD CONSTRAINT `bugtracker_ibfk_1` FOREIGN KEY (`author`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `comments`
- --
- ALTER TABLE `comments`
- ADD CONSTRAINT `comments_ibfk_1` FOREIGN KEY (`news_id`) REFERENCES `news` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `comments_ibfk_2` FOREIGN KEY (`author`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `friends`
- --
- ALTER TABLE `friends`
- ADD CONSTRAINT `friends_ibfk_1` FOREIGN KEY (`with`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `friends_ibfk_2` FOREIGN KEY (`friend`) REFERENCES `accounts` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `guilds`
- --
- ALTER TABLE `guilds`
- ADD CONSTRAINT `guilds_ibfk_1` FOREIGN KEY (`ownerid`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `guildwar_kills`
- --
- ALTER TABLE `guildwar_kills`
- ADD CONSTRAINT `guildwar_kills_ibfk_1` FOREIGN KEY (`warid`) REFERENCES `guild_wars` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `guild_invites`
- --
- ALTER TABLE `guild_invites`
- ADD CONSTRAINT `guild_invites_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `guild_invites_ibfk_2` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `guild_membership`
- --
- ALTER TABLE `guild_membership`
- ADD CONSTRAINT `guild_membership_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
- ADD CONSTRAINT `guild_membership_ibfk_2` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
- ADD CONSTRAINT `guild_membership_ibfk_3` FOREIGN KEY (`rank_id`) REFERENCES `guild_ranks` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
- --
- -- Restrições para a tabela `guild_ranks`
- --
- ALTER TABLE `guild_ranks`
- ADD CONSTRAINT `guild_ranks_ibfk_1` FOREIGN KEY (`guild_id`) REFERENCES `guilds` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `house_lists`
- --
- ALTER TABLE `house_lists`
- ADD CONSTRAINT `house_lists_ibfk_1` FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `ip_bans`
- --
- ALTER TABLE `ip_bans`
- ADD CONSTRAINT `ip_bans_ibfk_1` FOREIGN KEY (`banned_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
- --
- -- Restrições para a tabela `live_casts`
- --
- ALTER TABLE `live_casts`
- ADD CONSTRAINT `live_casts_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `market_history`
- --
- ALTER TABLE `market_history`
- ADD CONSTRAINT `market_history_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `market_offers`
- --
- ALTER TABLE `market_offers`
- ADD CONSTRAINT `market_offers_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `messages`
- --
- ALTER TABLE `messages`
- ADD CONSTRAINT `messages_ibfk_1` FOREIGN KEY (`from`) REFERENCES `accounts` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `messages_ibfk_2` FOREIGN KEY (`to`) REFERENCES `accounts` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `players`
- --
- ALTER TABLE `players`
- ADD CONSTRAINT `players_ibfk_1` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `player_deaths`
- --
- ALTER TABLE `player_deaths`
- ADD CONSTRAINT `player_deaths_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `player_depotitems`
- --
- ALTER TABLE `player_depotitems`
- ADD CONSTRAINT `player_depotitems_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `player_inboxitems`
- --
- ALTER TABLE `player_inboxitems`
- ADD CONSTRAINT `player_inboxitems_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `player_items`
- --
- ALTER TABLE `player_items`
- ADD CONSTRAINT `player_items_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `player_namelocks`
- --
- ALTER TABLE `player_namelocks`
- ADD CONSTRAINT `player_namelocks_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE,
- ADD CONSTRAINT `player_namelocks_ibfk_2` FOREIGN KEY (`namelocked_by`) REFERENCES `players` (`id`) ON DELETE CASCADE ON UPDATE CASCADE;
- --
- -- Restrições para a tabela `player_spells`
- --
- ALTER TABLE `player_spells`
- ADD CONSTRAINT `player_spells_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `player_storage`
- --
- ALTER TABLE `player_storage`
- ADD CONSTRAINT `player_storage_ibfk_1` FOREIGN KEY (`player_id`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `poll_answer`
- --
- ALTER TABLE `poll_answer`
- ADD CONSTRAINT `poll_answer_ibfk_1` FOREIGN KEY (`poll_id`) REFERENCES `poll` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `poll_votes`
- --
- ALTER TABLE `poll_votes`
- ADD CONSTRAINT `poll_votes_ibfk_1` FOREIGN KEY (`answer_id`) REFERENCES `poll_answer` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `poll_votes_ibfk_2` FOREIGN KEY (`poll_id`) REFERENCES `poll` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `poll_votes_ibfk_3` FOREIGN KEY (`account_id`) REFERENCES `accounts` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `posts`
- --
- ALTER TABLE `posts`
- ADD CONSTRAINT `posts_ibfk_1` FOREIGN KEY (`board_id`) REFERENCES `forums` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `posts_ibfk_2` FOREIGN KEY (`thread_id`) REFERENCES `threads` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `threads`
- --
- ALTER TABLE `threads`
- ADD CONSTRAINT `threads_ibfk_1` FOREIGN KEY (`board_id`) REFERENCES `forums` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `tile_store`
- --
- ALTER TABLE `tile_store`
- ADD CONSTRAINT `tile_store_ibfk_1` FOREIGN KEY (`house_id`) REFERENCES `houses` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `videos`
- --
- ALTER TABLE `videos`
- ADD CONSTRAINT `videos_ibfk_1` FOREIGN KEY (`author`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- --
- -- Restrições para a tabela `video_comments`
- --
- ALTER TABLE `video_comments`
- ADD CONSTRAINT `video_comments_ibfk_1` FOREIGN KEY (`video`) REFERENCES `videos` (`id`) ON DELETE CASCADE,
- ADD CONSTRAINT `video_comments_ibfk_2` FOREIGN KEY (`author`) REFERENCES `players` (`id`) ON DELETE CASCADE;
- /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
- /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
- /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement