5 lines
198 B
SQL
5 lines
198 B
SQL
DROP TABLE IF EXISTS `character_mentees`;
|
|
CREATE TABLE IF NOT EXISTS `character_mentees` (
|
|
`charId` int(10) unsigned NOT NULL DEFAULT '0',
|
|
`mentorId` int(10) unsigned NOT NULL DEFAULT '0'
|
|
); |