View Single Post
  #8  
Old 02-20-2016, 05:39 PM
ionhsmith
Discordant
 
Join Date: Jun 2014
Posts: 284
Default

ok I manually looked at my tables and they are all there and look the same as the update. the only thing I see different is where this says integer unsigned... mine has INT(10) unigned

Code:
CREATE TABLE `bot_groups` ( 
186 	`groups_index` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, 
187 	`group_leader_id` INTEGER UNSIGNED NOT NULL DEFAULT '0', 
188 	`group_name` VARCHAR(64) NOT NULL, 
189 	PRIMARY KEY  (`groups_index`), 
190 	KEY `FK_bot_groups_1` (`group_leader_id`), 
191 	CONSTRAINT `FK_bot_groups_1` FOREIGN KEY (`group_leader_id`) REFERENCES `bot_data` (`bot_id`)
Reply With Quote