0byt3m1n1
Path:
/
data
/
applications
/
aps.bak
/
joomla
/
1.7.2-0
/
standard
/
scripts
/
[
Home
]
File: upgrade-1.6.x-1.7.0.sql
ALTER TABLE `@@DB_MAIN_PREFIX@@jos_languages` ADD COLUMN `ordering` int(11) NOT NULL default 0 AFTER `published`; ALTER TABLE `@@DB_MAIN_PREFIX@@jos_languages` ADD INDEX `idx_ordering` (`ordering`); CREATE TABLE IF NOT EXISTS `@@DB_MAIN_PREFIX@@jos_associations` ( `id` VARCHAR(50) NOT NULL COMMENT 'A reference to the associated item.', `context` VARCHAR(50) NOT NULL COMMENT 'The context of the associated item.', `key` CHAR(32) NOT NULL COMMENT 'The key for the association computed from an md5 on associated ids.', PRIMARY KEY `idx_context_id` (`context`, `id`), INDEX `idx_key` (`key`) ) DEFAULT CHARSET=utf8;