Sha256: 13570e88245de342f38e18f4e552fa9a8975984796a7e0fc57960fabe4b373ae
Contents?: true
Size: 520 Bytes
Versions: 21
Compression:
Stored size: 520 Bytes
Contents
module SchemaPlus module Core module ActiveRecord module Migration module CommandRecorder def add_column(table_name, column_name, type, options = {}) SchemaMonkey::Middleware::Migration::Column.start(caller: self, operation: :record, table_name: table_name, column_name: column_name, type: type, options: options.deep_dup) do |env| super env.table_name, env.column_name, env.type, env.options end end end end end end end
Version data entries
21 entries across 21 versions & 1 rubygems