update avatar table
darcs-hash:20080519134057-84dde-d30a178de9e3e7d6ced21e9c395dfac545b3d343.gz
This commit is contained in:
parent
18a363ba5a
commit
c87951f895
|
@ -11,10 +11,14 @@ class Avatar extends DB_DataObject
|
|||
|
||||
public $__table = 'avatar'; // table name
|
||||
public $profile_id; // int(4) primary_key not_null
|
||||
public $original; // tinyint(1)
|
||||
public $width; // int(4) primary_key not_null
|
||||
public $height; // int(4) primary_key not_null
|
||||
public $original; // tinyint(1)
|
||||
public $mediatype; // varchar(32) not_null
|
||||
public $filename; // varchar(255)
|
||||
public $url; // varchar(255) unique_key
|
||||
public $created; // datetime() not_null
|
||||
public $modified; // timestamp() not_null default_CURRENT_TIMESTAMP
|
||||
|
||||
/* Static get */
|
||||
function staticGet($k,$v=NULL) { return DB_DataObject::staticGet('Avatar',$k,$v); }
|
||||
|
|
|
@ -1,15 +1,20 @@
|
|||
|
||||
[avatar]
|
||||
profile_id = 129
|
||||
original = 17
|
||||
width = 129
|
||||
height = 129
|
||||
original = 17
|
||||
mediatype = 130
|
||||
filename = 2
|
||||
url = 2
|
||||
created = 142
|
||||
modified = 384
|
||||
|
||||
[avatar__keys]
|
||||
profile_id = K
|
||||
width = K
|
||||
height = K
|
||||
url = U
|
||||
|
||||
[notice]
|
||||
id = 129
|
||||
|
|
Loading…
Reference in New Issue
Block a user