database
database copied to clipboard
Lite & fast micro PHP database abstraction library that is **easy to use**.
if ($size > 16777215) { return 'LONGTEXT'; } if ($size > 65535) { return 'MEDIUMTEXT'; } if ($size > 16381) { return 'TEXT'; } return "VARCHAR({$size})"; To if ($size >...
# Add ScyllaDB Adapter Support related issue : [#9295](https://github.com/appwrite/appwrite/issues/9295) This PR adds initial support for ScyllaDB as a new database adapter in the Utopia Database library. ## Features The ScyllaDB...
## Summary by CodeRabbit - **New Features** - Added support for handling a deleted timestamp attribute in the database adapter.
This PR implements count queries and generally cleans up the code of how aggregates work so it's more maintainable. This supports all DB adapters excluding MongoDB.