Server Error #23115
|
Hi Community! I'm playing with https://demo.netbox.dev/ and whatever module I'm trying to pick I'm always ending with Server Error page and below info message:
Could you please help me overcoming this issue? Thanks a lot! |
Replies: 1 comment 1 reply
|
This error points to a schema mismatch on the demo server, not something you can fix in your browser. NetBox's Because you're using The contribution guide says the demo is rebuilt nightly, so it's worth retrying after its next rebuild. That isn't a guarantee of recovery; if it persists, the timestamp and exact URL will help the operator correlate the failure. |

This error points to a schema mismatch on the demo server, not something you can fix in your browser. NetBox's
extras.0144_customfield_statusmigration adds exactly theextras_customfield.statuscolumn named in your traceback. The running application expects it, but the database it queried did not have it.Because you're using
demo.netbox.dev, the migration instructions on the error page are for the demo operator, not for you. They need to check the deployed version's migration state against the database actually used by the web process and complete the upgrade if necessary. Creating a local NetBox installation or changing your account settings won't repair that hosted database.The contr…