Skip to content

Releases: webrium/foxdb

FoxDB 3.0.0

15 Jul 10:42
8457179
Compare
Choose a tag to compare

FoxDB query builder version 3.0.0-beta

13 Jul 16:04
Compare
Choose a tag to compare

Full Changelog: 2.1.10...3.0.0-beta

2.1.10

19 May 08:46
d9925ef
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.9...2.1.10

2.1.9

10 Dec 19:56
5c5668c
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.8...2.1.9

2.1.8

04 Dec 08:09
d537a5d
Compare
Choose a tag to compare

A feature was created to be able to sort different columns with different types

  $list = Meeting::where('client_id', $client->id)
             ->orderBy([['date','DESC'], ['start_at','ASC']])
             ->get();

If the sorting for all columns is ASC or DESC, you can do as follows

  $list = Meeting::where('client_id', $client->id)
             ->orderBy(['date', 'start_at'], 'DESC')
             ->get();

2.1.7

21 Nov 08:27
65bae8a
Compare
Choose a tag to compare
Fix bigInt schema

2.1.6

16 Nov 08:04
771792d
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.5...2.1.6

2.1.5

06 Nov 07:04
c7374be
Compare
Choose a tag to compare

What's Changed

Full Changelog: 2.1.4...2.1.5

2.1.4

23 Oct 10:39
f664981
Compare
Choose a tag to compare

What's Changed

  • The default value for the all method by @parsgit in #17

Full Changelog: 2.1.3...2.1.4

2.1.3

15 Oct 10:02
763cae6
Compare
Choose a tag to compare

Fix orderBy method