Added directories to channels and videos

This commit is contained in:
2023-03-03 23:22:17 -05:00
parent db74e26124
commit ef1813f16e
8 changed files with 48 additions and 5 deletions

View File

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