No migrations folder

Hello there,
I created a wheel for one custom plugin:

./bin/maintenance/build-wheel.py plugin --add-version-suffix  ~/dev/indico/custom/plugins/custom_services

then I copied the wheel created under the dist folder over to our production server.
Then in the server I installed it as:

pip install the_wheel.whl

I then proceeded to update the db as:

indico db --plugin custom_services upgrade

However nothing happens, I get this message:
skipping plugin ‘custom_services’ (no migrations folder)

Any ideas what I am missing?
I do have a migrations folder up to date.

image

Cheers

probably it’s not added via your MANIFEST.IN

That’s exactly what it was.
Thanks!