Merge branch 'standalone_develop' into trustie_server

This commit is contained in:
xxq250 2023-04-18 21:42:40 +08:00
commit 05d3c0f03e
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,7 @@ namespace :commit_log_to_db do
sql_connection.begin_db_transaction
sql = "INSERT INTO commit_logs (`user_id`, `project_id`, `repository_id`, `name`, `full_name`, `commit_id`, `ref`, `message`, `created_at`, `updated_at`) VALUES #{data}"
sql_connection.execute(sql)
sql_connection.commit_db_transaction
end
end
end
@ -81,6 +82,7 @@ namespace :commit_log_to_db do
sql_connection.begin_db_transaction
sql = "INSERT INTO commit_logs (`user_id`, `project_id`, `repository_id`, `name`, `full_name`, `commit_id`, `ref`, `message`, `created_at`, `updated_at`) VALUES #{data}"
sql_connection.execute(sql)
sql_connection.commit_db_transaction
end
end