lockstep_rails 0.3.67 → 0.3.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -69,6 +69,16 @@ end
69
69
  # @format: uuid
70
70
  field :created_user_id
71
71
 
72
+ # The date this note was last modified
73
+ # @type: string
74
+ # @format: date-time
75
+ field :modified, Types::Params::DateTime
76
+
77
+ # The ID of the user who last modified this note
78
+ # @type: string
79
+ # @format: uuid
80
+ field :modified_user_id
81
+
72
82
  # The name of the user who created the note
73
83
  # @type: string
74
84
  field :created_user_name
@@ -86,6 +96,7 @@ end
86
96
  field :recipient_name
87
97
 
88
98
  belongs_to :created_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"created_user_id"}
99
+ belongs_to :modified_user, {:class_name=>"Lockstep::User", :primary_key=>:user_id, :foreign_key=>"modified_user_id"}
89
100
 
90
101
 
91
102
  end
@@ -107,6 +107,11 @@ end
107
107
  # @type: boolean
108
108
  field :supports_erp_pdf_retrieval
109
109
 
110
+ # The customer associated with this transaction
111
+ # @type: string
112
+ # @format: uuid
113
+ field :transaction_customer_id
114
+
110
115
 
111
116
 
112
117
  end