Skip to content

Commit

Permalink
Added jQueryPlugins column to modules/templates
Browse files Browse the repository at this point in the history
  • Loading branch information
pijulius committed May 19, 2011
1 parent 8b5db90 commit f68b42c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions jCore.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1349,3 +1349,11 @@ ADD INDEX ( `Deactivated` );
SELECT @postsformid := `ID` FROM `dynamicforms` WHERE `FormID` = 'posts';
UPDATE `dynamicformfields` SET `OrderID` = `OrderID`+1 WHERE `FormID` = @postsformid AND `Name` = 'Keywords';
UPDATE `dynamicformfields` SET `OrderID` = `OrderID`-1 WHERE `FormID` = @postsformid AND `Name` = 'URL';

ALTER TABLE `modules` ADD `jQueryPlugins` VARCHAR( 255 ) NOT NULL DEFAULT '';
ALTER TABLE `templates` ADD `jQueryPlugins` VARCHAR( 255 ) NOT NULL DEFAULT '';
ALTER TABLE `templates` ADD `Installed` TINYINT( 1 ) UNSIGNED NOT NULL DEFAULT '0' AFTER `Name`;
UPDATE `templates` SET `Installed` = 1;

ALTER TABLE `modules` ADD INDEX ( `Installed` );
ALTER TABLE `templates` ADD INDEX ( `Installed` );

0 comments on commit f68b42c

Please sign in to comment.