Sha256: 58c07afe37b7be505589bf5a00625257e56b9b4e1a93e74d91698795fda0453d

Contents?: true

Size: 244 Bytes

Versions: 5

Compression:

Stored size: 244 Bytes

Contents

# frozen_string_literal: true

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

      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
exception-track-0.6.2 db/migrate/20170217023900_create_exception_track_logs.rb
exception-track-0.6.1 db/migrate/20170217023900_create_exception_track_logs.rb
exception-track-0.6.0 db/migrate/20170217023900_create_exception_track_logs.rb
exception-track-0.5.2 db/migrate/20170217023900_create_exception_track_logs.rb
exception-track-0.5.1 db/migrate/20170217023900_create_exception_track_logs.rb