diff options
author | Zach Copley <zach@status.net> | 2009-11-25 13:38:59 -0800 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2009-11-25 13:38:59 -0800 |
commit | 8acc1587b1cd4f6fc78bbedb88f414cd18efa942 (patch) | |
tree | 26a1b17a252cca0e91686af9faa5bef202828448 /plugins/OpenID/User_openid.php | |
parent | 88d41988679b6188095d20b8bbfdf016e3f2d605 (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 'plugins/OpenID/User_openid.php')
-rw-r--r-- | plugins/OpenID/User_openid.php | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/plugins/OpenID/User_openid.php b/plugins/OpenID/User_openid.php index c3624118e..338e0f6e9 100644 --- a/plugins/OpenID/User_openid.php +++ b/plugins/OpenID/User_openid.php @@ -2,9 +2,9 @@ /** * Table Definition for user_openid */ -require_once INSTALLDIR.'/classes/Plugin_DataObject.php'; +require_once INSTALLDIR.'/classes/Memcached_DataObject.php'; -class User_openid extends Plugin_DataObject +class User_openid extends Memcached_DataObject { ###START_AUTOCODE /* the code below is auto generated do not remove the above tag */ @@ -33,22 +33,4 @@ class User_openid extends Plugin_DataObject return ($cnt > 0); } - - /** - * Get the TableDef object that represents the table backing this class - * @return TableDef TableDef instance - */ - function tableDef() - { - return new TableDef($this->__table, - array(new ColumnDef('canonical', 'varchar', - '255', false, 'PRI'), - new ColumnDef('display', 'varchar', - '255', false), - new ColumnDef('user_id', 'integer', - null, false, 'MUL'), - new ColumnDef('created', 'datetime', - null, false), - new ColumnDef('modified', 'timestamp'))); - } } |