This website requires JavaScript.
Explore
Help
Sign In
kenmirrors
/
grocy
Watch
1
Star
0
Fork
0
mirror of
https://github.com/grocy/grocy.git
synced
2026-07-27 16:07:21 -07:00
Code
Issues
Projects
Releases
Wiki
Activity
Files
dfc274643fdea4fd025cec4ac6085c1bdaacaa9a
grocy
/
migrations
/
0142.sql
T
3 lines
81 B
SQL
Raw
Normal View
History
Unescape
Escape
Make it possible to mark meal plan entries as done (
closes
#924
)
2021-07-11 18:32:26 +02:00
ALTER
TABLE
meal_plan
ADD
done
TINYINT
NOT
NULL
DEFAULT
0
CHECK
(
done
IN
(
0
,
1
));
Reference in New Issue
Copy Permalink