module Sequel::Plugins::SkipSavingColumns::ClassMethods

Attributes

skip_saving_columns[R]

An array of column symbols for columns to skip when saving.

Public Instance Methods

skip_saving_columns=(v) click to toggle source

Over the default array of columns to skip. Once overridden, future changes to the class’s dataset and future subclasses will automatically use these overridden columns, instead of introspecting the database schema.

   # File lib/sequel/plugins/skip_saving_columns.rb
54 def skip_saving_columns=(v) 
55   @_skip_saving_columns_no_override = true
56   @skip_saving_columns = v.dup.freeze
57 end