mirror of
https://github.com/mangosfour/server.git
synced 2025-12-12 19:37:03 +00:00
5 lines
478 B
SQL
5 lines
478 B
SQL
alter table `character_social`
|
|
change `guid` `guid` int(11) unsigned NOT NULL DEFAULT '0' comment 'Character Global Unique Identifier' first,
|
|
change `friend` `friend` int(11) unsigned NOT NULL DEFAULT '0' comment 'Friend Global Unique Identifier' after `guid`,
|
|
change `flags` `flags` tinyint(1) unsigned NOT NULL DEFAULT '0' comment 'Friend flags' after `friend`,
|
|
change `name` `note` varchar(21) NOT NULL DEFAULT '' collate utf8_general_ci comment 'Friend Note' after `flags`;
|