Sha256: 7858e4452ee29ca8db45fc6c56e6e3e671ee31202f779b543121e6d2e572d5c0

Contents?: true

Size: 892 Bytes

Versions: 14

Compression:

Stored size: 892 Bytes

Contents

class CreateEffectiveLogging < ActiveRecord::Migration[4.2]
  def self.up
    create_table <%= @logs_table_name %> do |t|
      t.integer       :parent_id

      t.integer       :user_id

      t.string        :changes_to_type
      t.integer       :changes_to_id

      t.string        :associated_type
      t.integer       :associated_id
      t.string        :associated_to_s

      t.integer       :logs_count

      t.text          :message
      t.text          :details

      t.string        :status

      t.timestamps
    end

    add_index <%= @logs_table_name %>, :user_id
    add_index <%= @logs_table_name %>, :parent_id
    add_index <%= @logs_table_name %>, [:associated_type, :associated_id]
    add_index <%= @logs_table_name %>, :associated_id
    add_index <%= @logs_table_name %>, :associated_to_s
  end

  def self.down
    drop_table <%= @logs_table_name %>
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
effective_logging-3.0.13 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.12 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.11 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.10 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.9 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.8 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.7 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.6 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.5 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.4 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.3 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.2 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.1 db/migrate/01_create_effective_logging.rb.erb
effective_logging-3.0.0 db/migrate/01_create_effective_logging.rb.erb