summaryrefslogtreecommitdiff
path: root/plugins/Authentication/User_username.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-11-25 23:33:13 +0000
committerZach Copley <zach@status.net>2009-11-25 23:33:13 +0000
commitbd4a613c380212f58dfd43a5fb5541ac4096fc24 (patch)
treea11de855ffb58a6e65be9755693cff7d6106f722 /plugins/Authentication/User_username.php
parent2dc62d21f72e47e715f30446584d7e3af60102c0 (diff)
parent035c8cfd719b5efc5df5cc203d68975566b8e976 (diff)
Merge branch 'fix-openid' into 0.9.x
Diffstat (limited to 'plugins/Authentication/User_username.php')
-rw-r--r--plugins/Authentication/User_username.php22
1 files changed, 2 insertions, 20 deletions
diff --git a/plugins/Authentication/User_username.php b/plugins/Authentication/User_username.php
index 6826f2681..f30f60d83 100644
--- a/plugins/Authentication/User_username.php
+++ b/plugins/Authentication/User_username.php
@@ -2,9 +2,9 @@
/**
* Table Definition for user_username
*/
-require_once INSTALLDIR.'/classes/Plugin_DataObject.php';
+require_once INSTALLDIR.'/classes/Memcached_DataObject.php';
-class User_username extends Plugin_DataObject
+class User_username extends Memcached_DataObject
{
###START_AUTOCODE
/* the code below is auto generated do not remove the above tag */
@@ -43,22 +43,4 @@ class User_username extends Plugin_DataObject
return false;
}
}
-
- /**
- * 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('provider_name', 'varchar',
- '255', false, 'PRI'),
- new ColumnDef('username', 'varchar',
- '255', false, 'PRI'),
- new ColumnDef('user_id', 'integer',
- null, false),
- new ColumnDef('created', 'datetime',
- null, false),
- new ColumnDef('modified', 'timestamp')));
- }
}