Sha256: cc51e966f8664107edb133866aa07653a5f1926d55d5cc29e6cc70232c4cb5e6
Contents?: true
Size: 377 Bytes
Versions: 20
Compression:
Stored size: 377 Bytes
Contents
# frozen_string_literal: true # to keep track of when the modules were imported class AddSaltModuleIdToLookupKeys < ActiveRecord::Migration[4.2] def up add_column :lookup_keys, :salt_module_id, :integer add_index :lookup_keys, :salt_module_id end def down remove_index :lookup_keys, :salt_module_id remove_column :lookup_keys, :salt_module_id end end
Version data entries
20 entries across 20 versions & 1 rubygems