Skip to content

Commit 3b8dd83

Browse files
remove default scopes on assocations
1 parent f34799b commit 3b8dd83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/chrono_forge/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module ChronoForge
4-
VERSION = "0.5.1"
4+
VERSION = "0.6.0"
55
end

lib/chrono_forge/workflow.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ module ChronoForge
2525
class Workflow < ApplicationRecord()
2626
self.table_name = "chrono_forge_workflows"
2727

28-
has_many :execution_logs, -> { order(id: :asc) }, dependent: :destroy
29-
has_many :error_logs, -> { order(id: :asc) }, dependent: :destroy
28+
has_many :execution_logs, dependent: :destroy
29+
has_many :error_logs, dependent: :destroy
3030

3131
enum :state, %i[
3232
idle

0 commit comments

Comments
 (0)