diff --git a/setup/sql/pgsql_new.inc.php b/setup/sql/pgsql_new.inc.php deleted file mode 100644 index b320c2c441..0000000000 --- a/setup/sql/pgsql_new.inc.php +++ /dev/null @@ -1,211 +0,0 @@ -query($sql); - - $sql = "create table applications ( - app_name varchar(25) NOT NULL, - app_title varchar(50), - app_enabled int, - app_order int, - app_tables varchar(255), - app_version varchar(20) NOT NULL default '0.0', - unique(app_name) - )"; - $db->query($sql); - - - $sql = "create table accounts ( - account_id serial, - account_lid varchar(25) NOT NULL, - account_pwd char(32) NOT NULL, - account_firstname varchar(50), - account_lastname varchar(50), - account_permissions text, - account_groups varchar(30), - account_lastlogin int, - account_lastloginfrom varchar(255), - account_lastpwd_change int, - account_status char(1), - unique(account_lid) - )"; - $db->query($sql); - - $sql = "create table groups ( - group_id serial, - group_name varchar(50), - group_apps varchar(255) - )"; - $db->query($sql); - - $sql = "create table sessions ( - session_id varchar(255), - session_lid varchar(20), - session_pwd varchar(255), - session_ip varchar(255), - session_logintime int, - session_dla int, - unique(session_id) - )"; - $db->query($sql); - - $sql = "CREATE TABLE app_sessions ( - sessionid varchar(255) NOT NULL, - loginid varchar(20), - app varchar(20), - content text - )"; - $db->query($sql); - - $sql = "create table preferences ( - preference_owner varchar(20), - preference_name varchar(50), - preference_value varchar(50), - preference_appname varchar(50) - )"; - $db->query($sql); - - $sql = "create table access_log ( - sessionid varchar(255), - loginid varchar(30), - ip varchar(30), - li int, - lo varchar(255) - )"; - $db->query($sql); - - $sql = "CREATE TABLE profiles ( - con serial, - owner varchar(20), - title varchar(255), - phone_number varchar(255), - comments text, - picture_format varchar(255), - picture text - )"; - $db->query($sql); - - $sql = "create table addressbook ( - ab_id serial, - ab_owner varchar(25), - ab_access varchar(10), - ab_firstname varchar(255), - ab_lastname varchar(255), - ab_email varchar(255), - ab_hphone varchar(255), - ab_wphone varchar(255), - ab_fax varchar(255), - ab_pager varchar(255), - ab_mphone varchar(255), - ab_ophone varchar(255), - ab_street varchar(255), - ab_city varchar(255), - ab_state varchar(255), - ab_zip varchar(255), - ab_bday varchar(255), - ab_notes varchar(255), - ab_company varchar(255), - ab_company_id int, - ab_title varchar(60), - ab_address2 varchar(60) - ab_url varchar(255), - )"; - $db->query($sql); - - $sql = "create table todo ( - todo_id serial, - todo_id_parent int, - todo_owner varchar(25), - todo_access varchar(10), - todo_des text, - todo_pri int, - todo_status int, - todo_datecreated int, - todo_datedue int - )"; - $db->query($sql); - - $sql = "CREATE TABLE webcal_entry ( - cal_id serial, - cal_group_id int NULL, - cal_create_by varchar(25) NOT NULL, - cal_date int NOT NULL, - cal_time int NULL, - cal_mod_date int, - cal_mod_time int, - cal_duration int NOT NULL, - cal_priority int DEFAULT 2, - cal_type varchar(10), - cal_access varchar(10), - cal_name varchar(80) NOT NULL, - cal_description varchar(255) - )"; - $db->query($sql); - - $sql = "CREATE TABLE webcal_entry_user ( - cal_id int, - cal_login varchar(25) NOT NULL, - cal_status char(1) DEFAULT 'A' - )"; - $db->query($sql); - - $sql = "create table webcal_entry_repeats ( - cal_id int, - cal_type varchar(20), - cal_end int, - cal_frequency int default 1, - cal_days char(7) - )"; - $db->query($sql); - - $sql = "create table webcal_entry_groups ( - cal_id int, - groups varchar(255) - )"; - $db->query($sql); - - $sql = "CREATE TABLE newsgroups ( - con serial, - name varchar(255) NOT NULL, - messagecount int, - lastmessage int, - active char DEFAULT 'N' NOT NULL, - lastread int - )"; - $db->query($sql); - - $sql = "CREATE TABLE lang ( - message_id varchar(150) DEFAULT '' NOT NULL, - app_name varchar(100) DEFAULT 'common' NOT NULL, - lang varchar(5) DEFAULT '' NOT NULL, - content text NOT NULL, - unique(message_id,app_name,lang) - )"; - $db->query($sql); - - $sql = "CREATE TABLE categories ( - cat_id serial, - account_id int DEFAULT '0' NOT NULL, - app_name varchar(25) NOT NULL, - cat_name varchar(150) NOT NULL, - cat_description text NOT NULL - )"; - $db->query($sql); - -?> diff --git a/setup/sql/pgsql_newtables.inc.php b/setup/sql/pgsql_newtables.inc.php index 2ef32ba522..21d9890bde 100644 --- a/setup/sql/pgsql_newtables.inc.php +++ b/setup/sql/pgsql_newtables.inc.php @@ -208,4 +208,7 @@ )"; $db->query($sql); -?> + $currentver = "0.9.3pre7"; + update_version_table(); + +?> \ No newline at end of file diff --git a/setup/sql/pgsql_upgrade_beta.inc.php b/setup/sql/pgsql_upgrade_beta.inc.php index 5df186cc38..03c2b04d67 100644 --- a/setup/sql/pgsql_upgrade_beta.inc.php +++ b/setup/sql/pgsql_upgrade_beta.inc.php @@ -11,180 +11,6 @@ /* $Id$ */ - function v7122000to8032000(){ - global $currentver, $db; - $didupgrade = True; - if ($currentver == "7122000"){ - echo " \n"; -// echo " Upgrade from 7122000 to 8032000 is completed.\n"; - echo " Upgrading from 7122000 is not yet ready.
You can do this manually if you choose, otherwise dump your tables and start over.\n"; - echo " \n"; - $currentver = "8032000"; - } - } - function v8032000to8072000(){ - global $currentver, $db; - $didupgrade = True; - if ($currentver == "8032000"){ - echo " \n"; -// echo " Upgrade from 8032000 to 8072000 is completed.\n"; - echo " Upgrading from 8032000 is not yet ready.
You can do this manually if you choose, otherwise dump your tables and start over.\n"; - echo " \n"; - $currentver = "8072000"; - } - } - - function v8072000to8212000(){ - global $currentver, $db; - $didupgrade = True; - if ($currentver == "8072000"){ - - $sql = "CREATE TABLE applications (" - ."app_name varchar(25) NOT NULL," - ."app_title varchar(50)," - ."app_enabled int," - ."UNIQUE app_name (app_name)" - .")"; - $db->query($sql); - - $db->query("insert into applications (app_name, app_title, app_enabled) values ('admin', 'Administration', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('tts', 'Trouble Ticket System', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('inv', 'Inventory', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('chat', 'Chat', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('headlines', 'Headlines', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('filemanager', 'File manager', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('ftp', 'FTP', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('addressbook', 'Address Book', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('todo', 'ToDo List', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('calendar', 'Calendar', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('email', 'Email', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('nntp', 'NNTP', 1)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('bookmarks', 'Bookmarks', 0)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('cron_apps', 'cron_apps', 0)"); - $db->query("insert into applications (app_name, app_title, app_enabled) values ('napster', 'Napster', 0)"); - - echo " \n"; - echo " Upgrade from 8072000 to 8212000 is completed.\n"; - echo " \n"; - $currentver = "8212000"; - } - } - function v8212000to9052000(){ - global $currentver, $db; - $didupgrade = True; - if ($currentver == "8212000"){ - $db->query("alter table chat_channel change name name varchar(10) not null"); - $db->query("alter table chat_messages change channel channel char(20) not null"); - $db->query("alter table chat_messages change loginid loginid varchar(20) not null"); - $db->query("alter table chat_currentin change loginid loginid varchar(25) not null"); - $db->query("alter table chat_currentin change channel channel char(20)"); - $db->query("alter table chat_privatechat change user1 user1 varchar(25) not null"); - $db->query("alter table chat_privatechat change user2 user2 varchar(25) not null"); - - echo " \n"; - echo " Upgrade from 8212000 to 9052000 is completed.\n"; - echo " \n"; - $currentver = "9052000"; - } - } - function v9052000to9072000(){ - global $currentver, $db; - $didupgrade = True; - if ($currentver == "9052000"){ - echo " \n"; -// echo " Upgrade from 9052000 to 9072000 is completed.\n"; - echo " Upgrading from 9052000 is not available.
I dont believe there were any changes, so this should be fine.\n"; - echo " \n"; - $currentver = "9072000"; - } - } - function v9072000to0_9_1(){ - global $currentver, $phpgw_info, $db; - $didupgrade = True; - if ($currentver == "9072000"){ - - $db->query("alter table accounts change con account_id int(11) DEFAULT '0' NOT NULL auto_increment"); - $db->query("alter table accounts change loginid account_lid varchar(25) NOT NULL"); - $db->query("alter table accounts change passwd account_pwd varchar(32) NOT NULL"); - $db->query("alter table accounts change firstname account_firstname varchar(50)"); - $db->query("alter table accounts change lastname account_lastname varchar(50)"); - $db->query("alter table accounts change permissions account_permissions text"); - $db->query("alter table accounts change groups account_groups varchar(30)"); - $db->query("alter table accounts change lastlogin account_lastlogin int(11)"); - $db->query("alter table accounts change lastloginfrom account_lastloginfrom varchar(255)"); - $db->query("alter table accounts change lastpasswd_change account_lastpwd_change int(11)"); - $db->query("alter table accounts change status account_status enum('A','L') DEFAULT 'A' NOT NULL"); - $db->query("alter table applications add app_order int"); - $db->query("alter table applications add app_tables varchar(255)"); - $db->query("alter table applications add app_version varchar(20) not null default '0.0'"); - $db->query("alter table preferences change owner preference_owner varchar(20)"); - $db->query("alter table preferences change name preference_name varchar(50)"); - $db->query("alter table preferences change value preference_value varchar(50)"); - $db->query("alter table preferences add preference_appname varchar(50) default ''"); - $db->query("alter table sessions change sessionid session_id varchar(255) NOT NULL"); - $db->query("alter table sessions change loginid session_lid varchar(20)"); - $db->query("alter table sessions change passwd session_pwd varchar(255)"); - $db->query("alter table sessions change ip session_ip varchar(255)"); - $db->query("alter table sessions change logintime session_logintime int(11)"); - $db->query("alter table sessions change dla session_dla int(11)"); - - $db->query("update applications set app_order=1,app_tables=NULL where app_name='admin'"); - $db->query("update applications set app_order=2,app_tables=NULL where app_name='tts'"); - $db->query("update applications set app_order=3,app_tables=NULL where app_name='inv'"); - $db->query("update applications set app_order=4,app_tables=NULL where app_name='chat'"); - $db->query("update applications set app_order=5,app_tables='news_sites,news_headlines,users_headlines' where app_name='headlines'"); - $db->query("update applications set app_order=6,app_tables=NULL where app_name='filemanager'"); - $db->query("update applications set app_order=7,app_tables='addressbook' where app_name='addressbook'"); - $db->query("update applications set app_order=8,app_tables='todo' where app_name='todo'"); - $db->query("update applications set app_order=9,app_tables='webcal_entry,webcal_entry_users,webcal_entry_groups,webcal_repeats' where app_name='calendar'"); - $db->query("update applications set app_order=10,app_tables=NULL where app_name='email'"); - $db->query("update applications set app_order=11,app_tables='newsgroups,users_newsgroups' where app_name='nntp'"); - $db->query("update applications set app_order=0,app_tables=NULL where app_name='cron_apps'"); - $sql = "CREATE TABLE config (" - ."config_name varchar(25) NOT NULL," - ."config_value varchar(100)," - ."UNIQUE config_name (config_name)" - .")"; - $db->query($sql); - - $db->query("insert into config (config_name, config_value) values ('default_tplset', 'default')"); - $db->query("insert into config (config_name, config_value) values ('temp_dir', '/path/to/tmp')"); - $db->query("insert into config (config_name, config_value) values ('files_dir', '/path/to/dir/phpgroupware/files')"); - $db->query("insert into config (config_name, config_value) values ('encryptkey', 'change this phrase 2 something else'"); - $db->query("insert into config (config_name, config_value) values ('site_title', 'phpGroupWare')"); - $db->query("insert into config (config_name, config_value) values ('hostname', 'local.machine.name')"); - $db->query("insert into config (config_name, config_value) values ('webserver_url', '/phpgroupware')"); - $db->query("insert into config (config_name, config_value) values ('auth_type', 'sql')"); - $db->query("insert into config (config_name, config_value) values ('ldap_host', 'localhost')"); - $db->query("insert into config (config_name, config_value) values ('ldap_context', 'o=phpGroupWare')"); - $db->query("insert into config (config_name, config_value) values ('usecookies', 'True')"); - $db->query("insert into config (config_name, config_value) values ('mail_server', 'localhost')"); - $db->query("insert into config (config_name, config_value) values ('mail_server_type', 'imap')"); - $db->query("insert into config (config_name, config_value) values ('imap_server_type', 'Cyrus')"); - $db->query("insert into config (config_name, config_value) values ('mail_suffix', 'yourdomain.com')"); - $db->query("insert into config (config_name, config_value) values ('mail_login_type', 'standard')"); - $db->query("insert into config (config_name, config_value) values ('smtp_server', 'localhost')"); - $db->query("insert into config (config_name, config_value) values ('smtp_port', '25')"); - $db->query("insert into config (config_name, config_value) values ('nntp_server', 'yournewsserver.com')"); - $db->query("insert into config (config_name, config_value) values ('nntp_port', '119')"); - $db->query("insert into config (config_name, config_value) values ('nntp_sender', 'complaints@yourserver.com')"); - $db->query("insert into config (config_name, config_value) values ('nntp_organization', 'phpGroupWare')"); - $db->query("insert into config (config_name, config_value) values ('nntp_admin', 'admin@yourserver.com')"); - $db->query("insert into config (config_name, config_value) values ('nntp_login_username', '')"); - $db->query("insert into config (config_name, config_value) values ('nntp_login_password', '')"); - $db->query("insert into config (config_name, config_value) values ('default_ftp_server', 'localhost')"); - $db->query("insert into config (config_name, config_value) values ('httpproxy_server', '')"); - $db->query("insert into config (config_name, config_value) values ('httpproxy_port', '')"); - $db->query("insert into config (config_name, config_value) values ('showpoweredbyon', 'bottom')"); - $db->query("insert into config (config_name, config_value) values ('checkfornewversion', 'False')"); - - echo " \n"; - echo " Upgrade from 9072000 to 0.9.1 is completed.\n"; - echo " \n"; - $currentver = "0.9.1"; - } - } - function v0_9_1to0_9_2(){ global $currentver, $phpgw_info, $db; $didupgrade = True; @@ -248,7 +74,6 @@ function v0_9_2to0_9_3() { global $currentver, $phpgw_info, $db; - $didupgrade = True; // The 0.9.3pre1 is only temp until release if ($currentver == "0.9.2" || $currentver == "0.9.3pre1" || $currentver == "0.9.3pre2" || $currentver == "0.9.3pre3" || $currentver == "0.9.3pre4" || $currentver == "0.9.3pre5" || $currentver == "0.9.3pre6") { @@ -258,7 +83,8 @@ update_owner("webcal_entry","cal_create_by"); update_owner("webcal_entry_user","cal_login"); $currentver = "0.9.3pre2"; - } + update_version_table(); + } if ($currentver == "0.9.3pre2") { $db->query("select owner, newsgroup from users_newsgroups"); if ($db->num_rows()) { @@ -275,12 +101,14 @@ $db->query("update applications set app_tables='newsgroups' where app_name='nntp'"); } $currentver = "0.9.3pre3"; + update_version_table(); } if ($currentver == "0.9.3pre3") { $db->query("alter table todo add todo_id_parent int DEFAULT 0 NOT NULL"); $currentver = "0.9.3pre4"; - } + update_version_table(); + } if ($currentver == "0.9.3pre4") { $db->query("create table temp as select * from config"); @@ -289,6 +117,7 @@ $db->query("insert into config select * from temp"); $db->query("drop table config"); $currentver = "0.9.3pre5"; + update_version_table(); } if ($currentver == "0.9.3pre5") { @@ -307,6 +136,7 @@ $db->query("alter table addressbook add ab_url varchar(255)"); $db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('transy', 'Translation Management', 0, 13, NULL, '".$phpgw_info["server"]["version"]."')"); $currentver = "0.9.3pre7"; + update_version_table(); } echo " \n"; @@ -315,29 +145,7 @@ } } - echo "\n"; - echo " \n"; - echo " \n"; - echo " \n"; - v7122000to8032000(); - v8032000to8072000(); - v8072000to8212000(); - v8212000to9052000(); - v9052000to9072000(); - v9072000to0_9_1(); v0_9_1to0_9_2(); v0_9_2to0_9_3(); - $db->query("update applications set app_version='".$phpgw_info["server"]["version"]."' where (app_name='admin' or app_name='filemanager' or app_name='addressbook' or app_name='todo' or app_name='calendar' or app_name='email' or app_name='nntp' or app_name='cron_apps')"); - $db->query("update config set config_value='" . $phpgw_info["server"]["version"] . "' where " - . "config_name='phpgroupware_api_version'"); - - - if (!$didupgrade == True){ - echo " \n"; - echo " \n"; - echo " \n"; - } - - echo "
 Table Upgrades
No table changes were needed. The script only updated your version setting.
\n"; -?> +?> \ No newline at end of file diff --git a/setup/sql/pgsql_upgrade_prebeta.inc.php b/setup/sql/pgsql_upgrade_prebeta.inc.php index 5df186cc38..9ae6632140 100644 --- a/setup/sql/pgsql_upgrade_prebeta.inc.php +++ b/setup/sql/pgsql_upgrade_prebeta.inc.php @@ -185,159 +185,11 @@ } } - function v0_9_1to0_9_2(){ - global $currentver, $phpgw_info, $db; - $didupgrade = True; - if ($currentver == "0.9.1"){ - - $db->query("alter table access_log change lo lo varchar(255)"); - $db->query("alter table addressbook change ab_id ab_id int(11) NOT NULL auto_increment"); - $db->query("alter table addressbook add ab_company_id int(10) unsigned"); - $db->query("alter table addressbook add ab_title varchar(60)"); - $db->query("alter table addressbook add ab_address2 varchar(60)"); - - $sql = "CREATE TABLE customers ( - company_id int(10) unsigned NOT NULL auto_increment, - company_name varchar(255), - website varchar(80), - ftpsite varchar(80), - industry_type varchar(50), - status varchar(30), - software varchar(40), - lastjobnum int(10) unsigned, - lastjobfinished date, - busrelationship varchar(30), - notes text, - PRIMARY KEY (company_id) - );"; - $db->query($sql); - - $db->query("update lang set lang='da' where lang='dk'"); - $db->query("update lang set lang='ko' where lang='kr'"); - - $db->query("update preferences set preference_name='da' where preference_name='dk'"); - $db->query("update preferences set preference_name='ko' where preference_name='kr'"); - - //add weather support - $db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('weather', 'Weather', 1, 12, NULL, '".$phpgw_info["server"]["version"]."')"); - $db->query("INSERT INTO lang (message_id, app_name, lang, content) VALUES( 'weather','Weather','en','weather')"); - - echo " \n"; - echo " Upgrade from 0.9.1 to 0.9.2 is completed.\n"; - echo " \n"; - $currentver = "0.9.2"; - } - } - - function update_owner($table,$field){ - global $db; - $db->query("select distinct($field) from $table"); - if ($db->num_rows()) { - while($db->next_record()) { - $owner[count($owner)] = $db->f($field); - } - for($i=0;$iquery("select account_id from accounts where account_lid='".$owner[$i]."'"); - $db->next_record(); - $db->query("update $table set $field=".$db->f("account_id")." where $field='".$owner[$i]."'"); - } - } - $db->query("alter table $table change $field $field int(11) NOT NULL"); - } - - function v0_9_2to0_9_3() - { - global $currentver, $phpgw_info, $db; - $didupgrade = True; - - // The 0.9.3pre1 is only temp until release - if ($currentver == "0.9.2" || $currentver == "0.9.3pre1" || $currentver == "0.9.3pre2" || $currentver == "0.9.3pre3" || $currentver == "0.9.3pre4" || $currentver == "0.9.3pre5" || $currentver == "0.9.3pre6") { - if ($currentver == "0.9.2" || $currentver == "0.9.3pre1") { - update_owner("addressbook","ab_owner"); - update_owner("todo","todo_owner"); - update_owner("webcal_entry","cal_create_by"); - update_owner("webcal_entry_user","cal_login"); - $currentver = "0.9.3pre2"; - } - if ($currentver == "0.9.3pre2") { - $db->query("select owner, newsgroup from users_newsgroups"); - if ($db->num_rows()) { - while($db->next_record()) { - $owner[count($owner)] = $db->f("owner"); - $newsgroup[count($newsgroup)] = $db->f("newsgroup"); - } - for ($i=0;$iquery("insert into preferences (preference_owner,preference_name," - ."preference_value,preference_appname) values ('".$owner[$i]."','".$newsgroup[$i]."','True'," - ."'nntp')"); - } - $db->query("drop table users_newsgroups"); - $db->query("update applications set app_tables='newsgroups' where app_name='nntp'"); - } - $currentver = "0.9.3pre3"; - } - - if ($currentver == "0.9.3pre3") { - $db->query("alter table todo add todo_id_parent int DEFAULT 0 NOT NULL"); - $currentver = "0.9.3pre4"; - } - - if ($currentver == "0.9.3pre4") { - $db->query("create table temp as select * from config"); - $db->query("drop table config"); - $db->query("create table config config_name varchar(255) NOT NULL UNIQUE, config_value varchar(100) NOT NULL"); - $db->query("insert into config select * from temp"); - $db->query("drop table config"); - $currentver = "0.9.3pre5"; - } - - if ($currentver == "0.9.3pre5") { - $db->query("CREATE TABLE categories ( - cat_id serial, - account_id int DEFAULT '0' NOT NULL, - app_name varchar(25) NOT NULL, - cat_name varchar(150) NOT NULL, - cat_description text NOT NULL)" - ); - $currentver = "0.9.3pre6"; - update_version_table(); - } - - if ($currentver == "0.9.3pre6") { - $db->query("alter table addressbook add ab_url varchar(255)"); - $db->query("insert into applications (app_name, app_title, app_enabled, app_order, app_tables, app_version) values ('transy', 'Translation Management', 0, 13, NULL, '".$phpgw_info["server"]["version"]."')"); - $currentver = "0.9.3pre7"; - } - - echo " \n"; - echo " Upgrade from 0.9.2 to $currentver is completed.\n"; - echo " \n"; - } - } - - echo "\n"; - echo " \n"; - echo " \n"; - echo " \n"; v7122000to8032000(); v8032000to8072000(); v8072000to8212000(); v8212000to9052000(); v9052000to9072000(); v9072000to0_9_1(); - v0_9_1to0_9_2(); - v0_9_2to0_9_3(); - $db->query("update applications set app_version='".$phpgw_info["server"]["version"]."' where (app_name='admin' or app_name='filemanager' or app_name='addressbook' or app_name='todo' or app_name='calendar' or app_name='email' or app_name='nntp' or app_name='cron_apps')"); - $db->query("update config set config_value='" . $phpgw_info["server"]["version"] . "' where " - . "config_name='phpgroupware_api_version'"); - - - if (!$didupgrade == True){ - echo " \n"; - echo " \n"; - echo " \n"; - } - - echo "
 Table Upgrades
No table changes were needed. The script only updated your version setting.
\n"; -?> +?> \ No newline at end of file