Module: StoreSchema::Module::ClassMethods
- Defined in:
- lib/store_schema/module.rb
Instance Method Summary collapse
Instance Method Details
#store_schema(column, &block) ⇒ Object
29 30 31 32 33 34 |
# File 'lib/store_schema/module.rb', line 29 def store_schema(column, &block) StoreSchema::Configuration.new(column).tap do |config| yield(config) config.send(:configure, self) end end |