• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

updating from 0.2.3 to 0.2.6

foxfirediego

New Member
Joined
Jul 25, 2007
Messages
66
Reaction score
0
i'm going to update from TFS 0.2.3 to 0.2.6 but i saw some difference between the old mysql schema do the new one:

table accounts
Code:
	`group_id` INT NOT NULL DEFAULT 1,
	PRIMARY KEY (`id`),
	FOREIGN KEY (`group_id`) REFERENCES `groups` (`id`)

table players
Code:
	FOREIGN KEY (`group_id`) REFERENCES `groups`(`id`)
how can i update my database to use foreign key!
thx
 
Check out the change_log.txt for versions 0.2.4, 0.2.5 and 0.2.6, if the structure was updated then in each one you'll find a MySQL query that you need to execute to update your structure.
 
Back
Top