Added status attribute to videos; added ability to edit video status and serial independently

This commit is contained in:
2023-03-06 17:59:58 -05:00
parent f243452783
commit 4735047682
5 changed files with 63 additions and 0 deletions

View File

@ -0,0 +1,11 @@
Sequel.migration do
up do
add_column(:videos, :status, String, default: 'backlog')
end
down do
drop_column(:videos, :status)
end
end