mirror of
https://github.com/grocy/grocy.git
synced 2026-03-27 23:29:25 +01:00
6 lines
120 B
SQL
6 lines
120 B
SQL
CREATE VIEW habits_current
|
|
AS
|
|
SELECT habit_id, MAX(tracked_time) AS last_tracked_time
|
|
FROM habits_log
|
|
GROUP BY habit_id
|