Sha256: 7daaa3c88e6810eb14a3f6ff35ac095db34f675411a17619ac3b963f40238db8
Contents?: true
Size: 417 Bytes
Versions: 55
Compression:
Stored size: 417 Bytes
Contents
class AddDateFilteringLimitToOrganization < ActiveRecord::Migration def change add_column :organizations, :date_filtering_limit, :datetime add_column :organizations, :historical_data, :boolean, default: false # Set historical data to true for organization existing before the feature Maestrano::Connector::Rails::Organization.all.each do |o| o.update(historical_data: true) end end end
Version data entries
55 entries across 55 versions & 1 rubygems