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