Added script attribute for videos

This commit is contained in:
2023-03-04 11:14:54 -05:00
parent 9ab06f0e9c
commit 51ee9f00fb
6 changed files with 35 additions and 1 deletions

View File

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