Sha256: 3cf38664db76dd743208859f5800dab610b6f0d971ee1df1ca9b8df7dfc6b08c
Contents?: true
Size: 736 Bytes
Versions: 15
Compression:
Stored size: 736 Bytes
Contents
class UpdateColumns < ActiveRecord::Migration def up change_column :errors, :exception_class_name, :text change_column :errors, :exception_message, :text change_column :errors, :host_name, :text change_column :errors, :url, :text change_column :error_occurrences, :user_agent, :text change_column :error_occurrences, :query_string, :text end def down change_column :errors, :exception_class_name, :string change_column :errors, :exception_message, :string change_column :errors, :host_name, :string change_column :errors, :url, :string change_column :error_occurrences, :user_agent, :string change_column :error_occurrences, :query_string, :string end end
Version data entries
15 entries across 15 versions & 1 rubygems