Sha256: 5d9b892a6a93d74ad4f95da17df68d3f8008510191fc412f2469fea2a4e75d6c

Contents?: true

Size: 355 Bytes

Versions: 2

Compression:

Stored size: 355 Bytes

Contents

# Adds complete ERROR_FINGERPRINT table to schema
class CreateErrorFingerprints < NdrError.migration_class
  def change
    create_table :error_fingerprints, id: false do |t|
      t.string :error_fingerprintid, primary_key: true
      t.string :ticket_url, length: 2000
      t.string :status
      t.integer :count

      t.timestamps
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
ndr_error-1.1.4 db/migrate/20150918162403_create_error_fingerprints.rb
ndr_error-1.1.3 db/migrate/20150918162403_create_error_fingerprints.rb