Sha256: a1eba4dc2807cce03f24cc3fbbadd73c63f27f9eeb5fa1826a36a33a37445613
Contents?: true
Size: 305 Bytes
Versions: 140
Compression:
Stored size: 305 Bytes
Contents
class AddExecutionToInterface < ActiveRecord::Migration[4.2] def up add_column :nics, :execution, :boolean, :default => false Nic::Managed.reset_column_information Nic::Managed.where(primary: true).update_all(execution: true) end def down remove_column :nics, :execution end end
Version data entries
140 entries across 140 versions & 1 rubygems