Changeset 1500 in ExiteCMS


Ignore:
Timestamp:
07/02/08 00:02:26 (4 years ago)
Author:
hverton
Message:

Added the 'searches' administration icon, fixed missing new table definition in rev01490.

Location:
trunk/administration
Files:
1 added
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/administration/upgrade/rev01490.php

    r1498 r1500  
    2929$commands = array(); 
    3030 
    31 // add the new admin module "Reporting" 
    32 $commands[] = array('type' => 'db', 'value' => "INSERT INTO ##PREFIX##admin (admin_rights, admin_image, admin_title, admin_link, admin_page) VALUES ('R', 'reporting.gif', '256', 'reporting.php', 3)"); 
     31// add the new admin module "Reports" 
     32$commands[] = array('type' => 'db', 'value' => "INSERT INTO ##PREFIX##admin (admin_rights, admin_image, admin_title, admin_link, admin_page) VALUES ('R', 'reports.gif', '256', 'reports.php', 3)"); 
     33 
     34// add the new "Reporting" table 
     35$commands[] = array('type' => 'db', 'value' => "CREATE TABLE ##PREFIX##reports ( 
     36  report_id smallint(5) unsigned NOT NULL auto_increment, 
     37  report_mod_id smallint(5) unsigned NOT NULL default 0, 
     38  report_name varchar(100) NOT NULL default '', 
     39  report_title varchar(100) NOT NULL default '', 
     40  report_version varchar(10) NOT NULL default 0, 
     41  report_active tinyint(1) unsigned NOT NULL default 0, 
     42  report_visibility tinyint(3) NOT NULL default 0, 
     43  PRIMARY KEY  (report_id) 
     44) ENGINE=MyISAM"); 
     45 
    3346 
    3447/*---------------------------------------------------+ 
Note: See TracChangeset for help on using the changeset viewer.