Add IMDB ID to movies

This commit is contained in:
2023-05-13 11:31:27 +10:00
parent f58eab72d7
commit 41917b0af3
4 changed files with 74 additions and 4 deletions

View File

@@ -0,0 +1,9 @@
# frozen_string_literal: true
ROM::SQL.migration do
change do
alter_table :movies do
add_column :imdb_id, :text
end
end
end