You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
e = casbin.Enforcer('path/to/model.conf', adapter)
68
68
```
69
69
70
+
## Prevent Automatic Table Creation
71
+
72
+
By default, the adapter automatically creates the necessary database tables during initialization. If you want to use the adapter only as an intermediary without automatically creating tables, you can set the `create_table` parameter to `False`:
73
+
74
+
```python
75
+
import sqlalchemy_adapter
76
+
import casbin
77
+
78
+
# Create adapter without automatically creating tables
0 commit comments