diff options
author | Zach Copley <zach@status.net> | 2009-11-25 13:38:59 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-25 23:54:36 +0000 |
commit | 2b6cf0d8b6b276eeccb623ec7886effd75423aeb (patch) | |
tree | 8fa8a6c0839f2855c971d507e9a6fafe29598f53 /lib | |
parent | 11abd4bfb70179faad3b4b0509b68403ddfc1ed9 (diff) |
Revert "Allow plugin DB_DataObject classes to not have to use the .ini file by overriding keys(), table(), and sequenceKey() for them"
This reverts commit a373d07ae00b878f47970f2e4a7d86c6ec3a65cf.
Conflicts:
classes/statusnet.ini
lib/schema.php
plugins/Authentication/AuthenticationPlugin.php
plugins/OpenID/OpenIDPlugin.php
plugins/UserFlag/UserFlagPlugin.php
Diffstat (limited to 'lib')
-rw-r--r-- | lib/schema.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/lib/schema.php b/lib/schema.php index 11e2b6f60..df7cb65f5 100644 --- a/lib/schema.php +++ b/lib/schema.php @@ -373,26 +373,6 @@ class Schema } /** - * Ensures that the table that backs a given - * Plugin_DataObject class exists. - * - * If the table does not yet exist, it will - * create the table. If it does exist, it will - * alter the table to match the column definitions. - * - * @param Plugin_DataObject $dataObjectClass - * - * @return boolean success flag - */ - - public function ensureDataObject($dataObjectClass) - { - $obj = new $dataObjectClass(); - $tableDef = $obj->tableDef(); - return $this->ensureTable($tableDef->name,$tableDef->columns); - } - - /** * Ensures that a table exists with the given * name and the given column definitions. * |