Add watched at to movies

This commit is contained in:
2023-05-10 21:10:45 +10:00
parent 3913841523
commit b9234d091d
3 changed files with 13 additions and 3 deletions

View File

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