class InstallSnitchReporting

Public Instance Methods

change() click to toggle source
# File lib/generators/snitch_reporting/install/templates/install_snitch_reporting.rb, line 2
def change
  create_table :snitch_reporting_snitch_reports do |t|
    t.text :error
    t.text :message
    t.integer :log_level
    t.string :klass
    t.string :action
    t.text :tags

    t.datetime :first_occurrence_at
    t.datetime :last_occurrence_at
    t.bigint :occurrence_count

    t.belongs_to :assigned_to
    t.datetime :resolved_at
    t.belongs_to :resolved_by
    t.datetime :ignored_at
    t.belongs_to :ignored_by

    t.timestamps
  end

  create_table :snitch_reporting_snitch_occurrences do |t|
    t.belongs_to :report
    t.string :http_method
    t.string :url
    t.text :user_agent
    t.text :backtrace
    t.text :backtrace_data
    t.text :context
    t.text :params
    t.text :headers

    t.timestamps
  end

  create_table :snitch_reporting_snitch_comments do |t|
    t.belongs_to :report
    t.belongs_to :author
    t.text :body

    t.timestamps
  end

  create_table :snitch_reporting_snitch_histories do |t|
    t.belongs_to :report
    t.belongs_to :user
    t.text :text

    t.timestamps
  end

  create_table :snitch_reporting_snitch_trackers do |t|
    t.belongs_to :report
    t.date :date
    t.bigint :count

    t.timestamps
  end
end