fix update 1131 for postgres databases
This commit is contained in:
		
							
								
								
									
										2
									
								
								boot.php
									
									
									
									
									
								
							
							
						
						
									
										2
									
								
								boot.php
									
									
									
									
									
								
							| @@ -49,7 +49,7 @@ define ( 'RED_PLATFORM',            'redmatrix' ); | ||||
| define ( 'RED_VERSION',             trim(file_get_contents('version.inc')) . 'R'); | ||||
| define ( 'ZOT_REVISION',            1     ); | ||||
|  | ||||
| define ( 'DB_UPDATE_VERSION',       1132  ); | ||||
| define ( 'DB_UPDATE_VERSION',       1133  ); | ||||
|  | ||||
| /** | ||||
|  * Constant with a HTML line break. | ||||
|   | ||||
| @@ -1,6 +1,6 @@ | ||||
| <?php | ||||
|  | ||||
| define( 'UPDATE_VERSION' , 1132 ); | ||||
| define( 'UPDATE_VERSION' , 1133 ); | ||||
|  | ||||
| /** | ||||
|  * | ||||
| @@ -1486,6 +1486,9 @@ function update_r1130() { | ||||
| } | ||||
|  | ||||
| function update_r1131() { | ||||
| 	if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) // make sure this gets skipped for anyone who hasn't run it yet, it will fail on pg | ||||
| 		return UPDATE_SUCCESS; | ||||
| 		 | ||||
| 	$r1 = q("ALTER TABLE `abook` ADD `abook_rating_text` TEXT NOT NULL DEFAULT '' AFTER `abook_rating` "); | ||||
| 	$r2 = q("ALTER TABLE `xlink` ADD `xlink_rating_text` TEXT NOT NULL DEFAULT '' AFTER `xlink_rating` "); | ||||
|  | ||||
| @@ -1493,4 +1496,14 @@ function update_r1131() { | ||||
| 		return UPDATE_SUCCESS; | ||||
| 	return UPDATE_FAILED; | ||||
|  | ||||
| } | ||||
|  | ||||
| function update_r1132() { | ||||
| 	if(ACTIVE_DBTYPE == DBTYPE_POSTGRES) { // correct previous failed update | ||||
| 		$r1 = q("ALTER TABLE abook ADD abook_rating_text TEXT NOT NULL DEFAULT '' "); | ||||
| 		$r2 = q("ALTER TABLE xlink ADD xlink_rating_text TEXT NOT NULL DEFAULT '' "); | ||||
| 		if(!$r1 || !$r2) | ||||
| 			return UPDATE_FAILED; | ||||
| 	} | ||||
| 	return UPDATE_SUCCESS; | ||||
| } | ||||
		Reference in New Issue
	
	Block a user