Sha256: b74f894e6977ec5c6f8f0e678077dcaf2e30e6043b50078d9a3381396e07065d
Contents?: true
Size: 465 Bytes
Versions: 1
Compression:
Stored size: 465 Bytes
Contents
# This migration comes from exception_logger (originally 20120507081835) class CreateExceptionLoggerLoggedExceptions < ActiveRecord::Migration def change create_table :exception_logger_logged_exceptions, :force => true do |t| t.string :exception_class t.string :controller_name t.string :action_name t.text :message t.text :backtrace t.text :environment t.text :request t.datetime :created_at end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
exception_logger-0.2.0 | test/dummy/db/migrate/20120507083836_create_exception_logger_logged_exceptions.exception_logger.rb |