<?phpclassSelfRefTestextendsDoctrine_Record{publicfunctionsetTableDefinition(){$this->hasColumn('name','string',50);$this->hasColumn('created_by','integer');}publicfunctionsetUp(){$this->hasOne('SelfRefTest as createdBy',array('local'=>'created_by'));}}