We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f34799b commit 3b8dd83Copy full SHA for 3b8dd83
lib/chrono_forge/version.rb
@@ -1,5 +1,5 @@
1
# frozen_string_literal: true
2
3
module ChronoForge
4
- VERSION = "0.5.1"
+ VERSION = "0.6.0"
5
end
lib/chrono_forge/workflow.rb
@@ -25,8 +25,8 @@ module ChronoForge
25
class Workflow < ApplicationRecord()
26
self.table_name = "chrono_forge_workflows"
27
28
- has_many :execution_logs, -> { order(id: :asc) }, dependent: :destroy
29
- has_many :error_logs, -> { order(id: :asc) }, dependent: :destroy
+ has_many :execution_logs, dependent: :destroy
+ has_many :error_logs, dependent: :destroy
30
31
enum :state, %i[
32
idle
0 commit comments