Method: Ci::Metadatable#options=

Defined in:
app/models/concerns/ci/metadatable.rb

#options=(value) ⇒ Object

Should be removed when the column is dropped from p_ci_builds allows deleting data for degenerate!

Raises:

  • (ActiveRecord::ReadonlyAttributeError)


168
169
170
171
172
# File 'app/models/concerns/ci/metadatable.rb', line 168

def options=(value)
  raise ActiveRecord::ReadonlyAttributeError, 'This data is read only' unless value.nil?

  super
end