Sha256: 33dd0a251c8e43f5e279755727f88a0a7577942dc75e840e8fc769279ef9c9ad
Contents?: true
Size: 540 Bytes
Versions: 49
Compression:
Stored size: 540 Bytes
Contents
class CreateChecksumAuditLogs < ActiveRecord::Migration def self.up create_table :checksum_audit_logs do |t| t.string :pid t.string :dsid t.string :version t.integer :pass t.string :expected_result t.string :actual_result t.timestamps end add_index :checksum_audit_logs, [:pid, :dsid], :name=>'by_pid_and_dsid', :order => {:created_at => "DESC" } end def self.down remove_index(:checksum_audit_logs, :name => 'by_pid_and_dsid') drop_table :checksum_audit_logs end end
Version data entries
49 entries across 49 versions & 3 rubygems