yes it is , i use tfs 0.4 and right gesior versionWhich server do you use? is the gesior version for that server version?
ALTER TABLE `guilds` ADD `create_ip` int(11) NOT NULL DEFAULT 0;
thanks fixed now , but now i have this problemCode:ALTER TABLE `guilds` ADD `create_ip` int(11) NOT NULL DEFAULT 0;
There is no need to delete/readd the table guilds.
CREATE TABLE `guild_invites`
(
`player_id` INT NOT NULL DEFAULT 0,
`guild_id` INT NOT NULL DEFAULT 0,
UNIQUE (`player_id`, `guild_id`),
FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE,
FOREIGN KEY (`guild_id`) REFERENCES `guilds`(`id`) ON DELETE CASCADE
) ENGINE = InnoDB;
when i try that it says Table 'otserver.guild_invites' doesn't existCode:CREATE TABLE `guild_invites` ( `player_id` INT NOT NULL DEFAULT 0, `guild_id` INT NOT NULL DEFAULT 0, UNIQUE (`player_id`, `guild_id`), FOREIGN KEY (`player_id`) REFERENCES `players`(`id`) ON DELETE CASCADE, FOREIGN KEY (`guild_id`) REFERENCES `guilds`(`id`) ON DELETE CASCADE ) ENGINE = InnoDB;
when i try to create the table guild_invites it says it allready exist but i dont exist ....Is the table added in the database? Did you restart your website?
DROP TABLE IF EXISTS `guild_invites`;
then it says #2013 - Lost connection to MySQL server during queryTry to drop it and create it again.
Code:DROP TABLE IF EXISTS `guild_invites`;
i can make table with other name but not with guild_invitesTry to drop it and create it again.
Code:DROP TABLE IF EXISTS `guild_invites`;