Replaced the old application version code, so there is a table now that displays all

the compatible versions.


git-svn-id: svn://10.0.0.236/trunk@191793 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bugzilla%micropipes.com
2006-03-05 06:35:34 +00:00
parent 2d94b65b0b
commit 52fef9465d
3 changed files with 57 additions and 9 deletions

View File

@@ -18,3 +18,10 @@ CREATE TABLE `session_data` (
ALTER TABLE `feedback` ADD `UserID` INT( 11 ) AFTER `ID`;
ALTER TABLE `feedback` ADD INDEX ( `UserID` );
ALTER TABLE `feedback` ADD CONSTRAINT `feedback_ibfk_2` FOREIGN KEY (`UserID`) REFERENCES `userprofiles` (`UserID`) ON DELETE CASCADE ON UPDATE CASCADE;
-- If you want the app to show up on the "supported applications" table for the
-- extension this has to be '1'
ALTER TABLE `applications` ADD `supported` TINYINT( 1 ) DEFAULT '0' NOT NULL ;
-- Set the "supported" applications:
UPDATE `applications` SET `supported`=1 WHERE `AppName` IN('Firefox','Thunderbird','Mozilla');