Sha256: 5ef486a8b56cb9b3f98188558aaec0c5ee2344b8eb174dd1a7bd01655aab552d
Contents?: true
Size: 664 Bytes
Versions: 11
Compression:
Stored size: 664 Bytes
Contents
class CreateExceptionNotificationServerNotifications < ActiveRecord::Migration def up create_table :exception_notification_server_notifications do |t| t.integer :parent_id t.string :status t.string :exception_hash t.string :env t.string :application t.string :server t.string :process t.string :rails_root t.string :exception_class t.string :exception_message t.binary :backtrace t.binary :data t.binary :request t.binary :session t.binary :environment t.timestamps end end def down drop_table :exception_notification_server_notifications end end
Version data entries
11 entries across 11 versions & 1 rubygems