Project

Profile

Help

Refactor #5457

Updated by dkliban@redhat.com over 4 years ago

pulpcore.app.models.Model has three fields[0] that all start with an _. All these fields need to drop the _ prefix from their names.  

 _id will become id 
 _created will become created 
 _last_updated will become last_updated 

 [0] https://github.com/pulp/pulpcore/blob/3c62889e0c01fe54de66c60147192a03cac73ab2/pulpcore/app/models/base.py#L21-L23

Back