Skip to content

Releases: tamedevelopers/database

6.0.10

24 Sep 04:51

Choose a tag to compare

return type updated for IDE Hinting

6.0.9

20 Sep 18:22

Choose a tag to compare

boostrap pagination view Ajax support

6.0.8

20 Sep 07:57

Choose a tag to compare

loading and onloading pagination view have been added

With Automatic Akjax call

6.0.7

15 Sep 04:31

Choose a tag to compare

Database Schema Update to generate migrations correctly

6.0.6

08 Sep 21:32

Choose a tag to compare

command update for CLI and browser support

6.0.5

08 Sep 06:13

Choose a tag to compare

KernalCommand Error Fix for CLI Support

6.0.4

08 Sep 04:35

Choose a tag to compare

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

04 Sep 06:10

Choose a tag to compare

6.0.3 Pre-release
Pre-release

command logic test

6.0.2

14 Aug 21:13

Choose a tag to compare

->take(); //Alias for the "limit()" method.
-> groupByDesc('column');
->groupByAsc('column');

6.0.1

22 Apr 21:53

Choose a tag to compare

Error fix. The same usage