You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I upgraded a Rails app Rails 7.0.4.2, and saw this error when saving an audited record:
# table defined with inet columndefchangecreate_table:devicesdo |t|
# 基础属性t.string:sn,null: false,unique: true,comment: "序列号"t.string:name,comment: "设备名称"t.inet:ip,comment: "管理地址"end# model turn on audited, But saw Tried to load unspecified class: IPAddr. then turn off the audtied, It can working wellclassDevice < ApplicationRecord# 设备标签属性# acts_as_tagger# acts_as_taggable_on :tags# 数据库审计# 添加审计功能会提示 Tried to load unspecified class: IPAddrauditedend
Hello, I upgraded a Rails app Rails 7.0.4.2, and saw this error when saving an audited record:
The text was updated successfully, but these errors were encountered: