mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
9 lines
280 B
SQL
9 lines
280 B
SQL
CREATE TABLE `player_titlesets` (
|
|
`id` int(11) unsigned NOT NULL auto_increment,
|
|
`char_id` int(11) unsigned NOT NULL,
|
|
`title_set` int(11) unsigned NOT NULL,
|
|
PRIMARY KEY (`id`),
|
|
KEY `id` (`id`)
|
|
);
|
|
|
|
alter table titles add column `title_set` int(11) NOT NULL default '0'; |