addColumn( 'ImageManager', 'createdBy', $this->integer(10) ->unsigned() ->null() ->defaultValue(null) ); $this->addColumn( 'ImageManager', 'modifiedBy', $this->integer(10) ->unsigned() ->null() ->defaultValue(null) ); } public function safeDown() { $this->dropColumn('ImageManager', 'createdBy'); $this->dropColumn('ImageManager', 'modifiedBy'); } }