Add table() and keys() overrides to User_username
This commit is contained in:
parent
b36ec6da87
commit
14f7c784a6
@ -43,4 +43,19 @@ class User_username extends Memcached_DataObject
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function table() {
|
||||||
|
return array(
|
||||||
|
'user_id' => DB_DATAOBJECT_INT,
|
||||||
|
'username' => DB_DATAOBJECT_STR,
|
||||||
|
'provider_name' => DB_DATAOBJECT_STR ,
|
||||||
|
'created' => DB_DATAOBJECT_STR + DB_DATAOBJECT_DATE + DB_DATAOBJECT_TIME
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
// now define the keys.
|
||||||
|
function keys() {
|
||||||
|
return array('provider_name', 'username');
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user