Add movies page

This commit is contained in:
2023-05-02 20:29:09 +10:00
parent 9e1bf6e6d8
commit 0746d29543
12 changed files with 1063 additions and 15 deletions

View File

@@ -0,0 +1,13 @@
# frozen_string_literal: true
module Adamantium
module Persistence
module Relations
class Movies < ROM::Relation[:sql]
schema :movies, infer: true
auto_struct(true)
end
end
end
end