A SQLAlchemy implementation of the skosprovider interface.
A change in the models has been made which requires a database upgrade. The "concept" table's "concept_id" column has changed from being an int to a string.
Existing databases will therefor require a small change to update table scheme. Typically this will look like:
ALTER TABLE concept ALTER COLUMN concept_id TEXT NOT NULL;
More information about this library can be found in docs. The docs can be built using Sphinx.
Please make sure you have installed Sphinx in the same environment where skosprovider_sqlalchemy is present.
# activate your virtual env
$ pip install -r requirements-dev.txt
$ cd docs
$ make html