FIX: Tools::DbSchema's tables parameter is a string (#400)

This commit is contained in:
Roman Rizzi 2024-01-04 11:50:26 -03:00 committed by GitHub
parent f9d7d7f5f0
commit e6422c542e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,7 +54,7 @@ module DiscourseAi
protected
def description_args
{ tables: tables.join(", ") }
{ tables: tables }
end
end
end