Sha256: 39d8b3318b5bf08a5d3f2e5689cc5b317283ccabdf400fa54197869ebf7a694b

Contents?: true

Size: 246 Bytes

Versions: 1

Compression:

Stored size: 246 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: 16_777_215

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
exception-track-1.0.0 db/migrate/20170217023900_create_exception_track_logs.rb