We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the widgets don't work in sqlite. Apparently they don't work with MSSQL either #41
I haven't tried postgres, but they do work with mysql.
With this modification they work with sqlite however, but it will surely break everything else:
protected function getCards(): array { $aggregationColumns = [ DB::raw('COUNT(*) as count'), DB::raw('cast(SUM((julianday(finished_at) - julianday(started_at)) * 60 * 60 * 24) as integer) as total_time_elapsed'), DB::raw('AVG(julianday(finished_at) - julianday(started_at)) as average_time_elapsed'), ];
Maybe we can use eloquent in some way to avoid hitting engine specific issues?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the widgets don't work in sqlite. Apparently they don't work with MSSQL either #41
I haven't tried postgres, but they do work with mysql.
With this modification they work with sqlite however, but it will surely break everything else:
Maybe we can use eloquent in some way to avoid hitting engine specific issues?
The text was updated successfully, but these errors were encountered: