From df7bcec717ad586b35b42dc850775e097ce384cc Mon Sep 17 00:00:00 2001 From: Angie Byron Date: Wed, 3 Sep 2008 12:04:49 +0000 Subject: #302395 by chx: Minor DBTNG clean-up. --- includes/database/schema.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'includes/database/schema.inc') diff --git a/includes/database/schema.inc b/includes/database/schema.inc index 4d04a15d6..03114d2cd 100644 --- a/includes/database/schema.inc +++ b/includes/database/schema.inc @@ -117,29 +117,29 @@ */ abstract class DatabaseSchema { - + protected $connection; - + public function __construct($connection) { $this->connection = $connection; } - + /** * Check if a table exists. */ abstract public function tableExists($table); - + /** * Check if a column exists in the given table. */ abstract public function columnExists($table, $column); - + /** * This maps a generic data type in combination with its data size * to the engine-specific data type. */ abstract public function getFieldTypeMap(); - + /** * Rename a table. * @@ -161,7 +161,7 @@ abstract class DatabaseSchema { * The table to be dropped. */ abstract public function dropTable(&$ret, $table); - + /** * Add a new field to a table. * @@ -380,7 +380,7 @@ abstract class DatabaseSchema { $ret[] = update_sql($statement); } } - + /** * Return an array of field names from an array of key/index column specifiers. * -- cgit v1.2.3