Added ability to mark or 'star' a video to keep a short list of active video projects

This commit is contained in:
2023-03-13 22:23:34 -04:00
parent 85750b4de4
commit f27154b705
8 changed files with 54 additions and 7 deletions

View File

@ -0,0 +1,11 @@
Sequel.migration do
up do
add_column(:videos, :starred, TrueClass, default: false)
end
down do
drop_column(:videos, :starred)
end
end