landsandboat/sql/blacklist.sql
atom0s d91549b194 SQL: Changed all tables to use MyISAM for much improved import / query times.
SQL: Changed all tables to use the charset of utf8.
2014-01-09 03:20:52 +00:00

18 lines
566 B
SQL

/*!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 */;
SET FOREIGN_KEY_CHECKS=0;
--
-- Structure of table `char_blacklist`
--
DROP TABLE IF EXISTS `char_blacklist`;
CREATE TABLE `char_blacklist` (
`charid_owner` int(10) unsigned NOT NULL,
`charid_target` int(10) unsigned NOT NULL,
PRIMARY KEY (`charid_target`,`charid_owner`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;