Browse Source

Cleaning up after myself.

Thanks @emanuele45

Signed-Off: Matthew "Labradoodle-360" Kerle |
<[email protected]>
Matthew Kerle 11 years ago
parent
commit
a05d5b7d7d

+ 1 - 1
other/upgrade_1-0.sql

@@ -970,7 +970,7 @@ CHANGE COLUMN avatar avatar tinytext NOT NULL default '',
 CHANGE COLUMN im_ignore_list im_ignore_list tinytext NOT NULL default '',
 CHANGE COLUMN im_ignore_list im_ignore_list tinytext NOT NULL default '',
 CHANGE COLUMN usertitle usertitle tinytext NOT NULL default '',
 CHANGE COLUMN usertitle usertitle tinytext NOT NULL default '',
 CHANGE COLUMN lngfile lngfile tinytext NOT NULL default '',
 CHANGE COLUMN lngfile lngfile tinytext NOT NULL default '',
-CHANGE COLUMN MSN skype tinytext NOT NULL default '',
+CHANGE COLUMN MSN MSN tinytext NOT NULL default '',
 CHANGE COLUMN memberIP memberIP tinytext NOT NULL default '',
 CHANGE COLUMN memberIP memberIP tinytext NOT NULL default '',
 ADD INDEX lngfile (lngfile(24));
 ADD INDEX lngfile (lngfile(24));
 ---#
 ---#

+ 0 - 5
other/upgrade_1-1.sql

@@ -2524,11 +2524,6 @@ foreach ($textfield_updates as $ind => $change)
 	$step_progress['current'] = $_GET['strict_step'];
 	$step_progress['current'] = $_GET['strict_step'];
 }
 }
 
 
----# Replacing MSN with Skype.
-ALTER TABLE {$db_prefix}members
-CHANGE COLUMN msn skype tinytext NOT NULL default '';
----#
-
 $step_progress = array();
 $step_progress = array();
 ---}
 ---}
 ---#
 ---#

+ 8 - 0
other/upgrade_2-1_mysql.sql

@@ -171,6 +171,14 @@ VALUES
 	(0, 240, 1, 'd', 0, 'remove_old_drafts');
 	(0, 240, 1, 'd', 0, 'remove_old_drafts');
 ---#
 ---#
 
 
+/******************************************************************************/
+---- Replacing MSN with Skype
+/******************************************************************************/
+---# Modifying the "msn" column...
+ALTER TABLE {$db_prefix}members
+CHANGE msn skype varchar(255) NOT NULL DEFAULT '';
+---#
+
 /******************************************************************************/
 /******************************************************************************/
 --- Adding support for deny boards access
 --- Adding support for deny boards access
 /******************************************************************************/
 /******************************************************************************/

+ 8 - 0
other/upgrade_2-1_postgresql.sql

@@ -225,6 +225,14 @@ VALUES
 	(0, 240, 1, 'd', 0, 'remove_old_drafts');
 	(0, 240, 1, 'd', 0, 'remove_old_drafts');
 ---#
 ---#
 
 
+/******************************************************************************/
+---- Replacing MSN with Skype
+/******************************************************************************/
+---# Modifying the "msn" column...
+ALTER TABLE {$db_prefix}members
+CHANGE msn skype varchar(255) NOT NULL DEFAULT '';
+---#
+
 /******************************************************************************/
 /******************************************************************************/
 --- Adding support for deny boards access
 --- Adding support for deny boards access
 /******************************************************************************/
 /******************************************************************************/

+ 8 - 0
other/upgrade_2-1_sqlite.sql

@@ -192,6 +192,14 @@ VALUES
 	(0, 240, 1, 'd', 0, 'remove_old_drafts');
 	(0, 240, 1, 'd', 0, 'remove_old_drafts');
 ---#
 ---#
 
 
+/******************************************************************************/
+---- Replacing MSN with Skype
+/******************************************************************************/
+---# Modifying the "msn" column...
+ALTER TABLE {$db_prefix}members
+CHANGE msn skype varchar(255) NOT NULL DEFAULT '';
+---#
+
 /******************************************************************************/
 /******************************************************************************/
 --- Adding support for deny boards access
 --- Adding support for deny boards access
 /******************************************************************************/
 /******************************************************************************/