Subversion-Projekte lars-tiefland.ci

Revision

Revision 2049 | Revision 2242 | Zur aktuellen Revision | Ganze Datei anzeigen | Leerzeichen ignorieren | Details | Blame | Letzte Änderung | Log anzeigen | RSS feed

Revision 2049 Revision 2107
Zeile 486... Zeile 486...
486
	 *
486
	 *
487
	 * Generates a platform-specific DROP TABLE string
487
	 * Generates a platform-specific DROP TABLE string
488
	 *
488
	 *
489
	 * @param	string	$table		Table name
489
	 * @param	string	$table		Table name
490
	 * @param	bool	$if_exists	Whether to add an IF EXISTS condition
490
	 * @param	bool	$if_exists	Whether to add an IF EXISTS condition
491
	 * @return	string
491
	 * @return	mixed	(Returns a platform-specific DROP table string, or TRUE to indicate there's nothing to do)
492
	 */
492
	 */
493
	protected function _drop_table($table, $if_exists)
493
	protected function _drop_table($table, $if_exists)
494
	{
494
	{
495
		$sql = 'DROP TABLE';
495
		$sql = 'DROP TABLE';
Zeile 977... Zeile 977...
977
	// --------------------------------------------------------------------
977
	// --------------------------------------------------------------------
Zeile 978... Zeile 978...
978
 
978
 
979
	/**
979
	/**
980
	 * Process indexes
980
	 * Process indexes
981
	 *
981
	 *
982
	 * @param	string	$table
982
	 * @param	string	$table	Table name
983
	 * @return	string
983
	 * @return	string[] list of SQL statements
984
	 */
984
	 */
985
	protected function _process_indexes($table)
985
	protected function _process_indexes($table)
986
	{
986
	{