Added ability to archive videos

This commit is contained in:
2023-03-07 00:07:29 -05:00
parent 9b6e38a313
commit 414cabb9f8
3 changed files with 53 additions and 8 deletions

View File

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