sqlalchemy-adapter icon indicating copy to clipboard operation
sqlalchemy-adapter copied to clipboard

SQLAlchemy Adapter for PyCasbin

Results 6 sqlalchemy-adapter issues
Sort by recently updated
recently updated
newest added

#36 while looking innocent enough is a breaking change and should have rolled minor versions at least and not been v0.3.1. Deleting the `_commit()` functionality and reworking the internals so...

enhancement

I would like to have the option for having soft delete rules in the database to be able to possibly track fields like - deleted_by, deleted_at - updated_by, updated_at etc.

Can we introduce some kind of configuration about tablename? Mostly it's just about this and we can avoid to pass a class, if someone just needs to change that. What...

Hello Casbin Devs, I've come across two GitHub repositories for the SQLAlchemy adapter in Python: 1. **pycasbin/sqlalchemy-adapter** GitHub: https://github.com/pycasbin/sqlalchemy-adapter PyPI: https://pypi.org/project/casbin-sqlalchemy-adapter/ (latest release: v1.4.0, July 8, 2024) 2. **officialpycasbin/sqlalchemy-adapter** GitHub:...

Hello, I have noticed that this library depends on `casbin>=0.8.1`. After further investigation, I discovered that `pycasbin` appears to be an alias for `casbin` (or vice versa). In version 1.44,...

See comments in the code below: ``` import casbin_sqlalchemy_adapter import sqlalchemy from sqlalchemy import Column, Integer, String ENGINE = sqlalchemy.create_engine("foo") CUSTOM_SCHEMA = "custom_schema" class Base(sqlalchemy.orm.DeclarativeBase): pass class CustomCasbinRule(Base): """Class we...