Sha256: cf639e2375f1bd333a74b48ee1200778d605c06b5dd90e877d2815a943962672

Contents?: true

Size: 246 Bytes

Versions: 3

Compression:

Stored size: 246 Bytes

Contents

# frozen_string_literal: true

class CreateExceptionTrackLogs < ActiveRecord::Migration[5.2]
  def change
    create_table :exception_tracks do |t|
      t.string :title
      t.text :body, limit: 16_777_215

      t.timestamps
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
exception-track-1.3.0 db/migrate/20170217023900_create_exception_track_logs.rb
exception-track-1.2.0 db/migrate/20170217023900_create_exception_track_logs.rb
exception-track-1.1.0 db/migrate/20170217023900_create_exception_track_logs.rb