Releases: tamedevelopers/database
Releases · tamedevelopers/database
6.0.10
6.0.9
boostrap pagination view Ajax support6.0.8
loading and onloading pagination view have been addedWith Automatic Akjax call
6.0.7
Database Schema Update to generate migrations correctly6.0.6
command update for CLI and browser support
6.0.5
KernalCommand Error Fix for CLI Support
6.0.4
Robust update with the same usage
CLI Command Support - php tame list
- Direct DB:: (methodName) call without no issue
DB::table(''users)->select('name');
DB::tableExists(''users);
DB::query('query');The below direct DB::select and DB::selectOne take a raw query string.
// will automatically call the get() method
DB::select(string $query);
// will automatically call the first() method
DB::selectOne(string $query);
```6.0.3
command logic test
6.0.2
->take(); //Alias for the "limit()" method.
-> groupByDesc('column');
->groupByAsc('column');
6.0.1
Error fix. The same usage