Replace persistence.db with db.gateway.connection

This commit is contained in:
2024-08-05 18:42:44 +10:00
parent 9b3d2dc4ae
commit d7573d7038
5 changed files with 6 additions and 6 deletions

View File

@@ -8,11 +8,11 @@ module Test
end
def rom
Hanami.app["persistence.rom"]
Hanami.app["db.rom"]
end
def db
Hanami.app["persistence.db"]
Hanami.app["db.gateway"].connection
end
end
end