Sha256: ccc76c8bcbf1295eb2993f36efe56711b74b0e15bda6d82acb43888422c0fbc1

Contents?: true

Size: 943 Bytes

Versions: 99

Compression:

Stored size: 943 Bytes

Contents

class InstallAudited < ActiveRecord::Migration
  def self.up
    create_table :audits, :force => true do |t|
      t.column :auditable_id, :integer
      t.column :auditable_type, :string
      t.column :associated_id, :integer
      t.column :associated_type, :string
      t.column :user_id, :integer
      t.column :user_type, :string
      t.column :username, :string
      t.column :action, :string
      t.column :audited_changes, :text
      t.column :version, :integer, :default => 0
      t.column :comment, :string
      t.column :remote_address, :string
      t.column :created_at, :datetime
    end

    add_index :audits, [:auditable_id, :auditable_type], :name => 'auditable_index'
    add_index :audits, [:associated_id, :associated_type], :name => 'associated_index'
    add_index :audits, [:user_id, :user_type], :name => 'user_index'
    add_index :audits, :created_at
  end

  def self.down
    drop_table :audits
  end
end

Version data entries

99 entries across 97 versions & 4 rubygems

Version Path
artfully_ose-1.3.0.pre4 db/migrate/20130122143845_install_audited.rb
artfully_ose-1.3.0.pre3 db/migrate/20130122143845_install_audited.rb
artfully_ose-1.3.0.pre2 db/migrate/20130122143845_install_audited.rb
artfully_ose-1.3.0.pre1 db/migrate/20130122143845_install_audited.rb
translation_center-2.0.2 db/migrate/20130410084606_install_audited.rb
translation_center-2.0.2 spec/dummy/db/migrate/20130410084712_install_audited.translation_center.rb
translation_center-2.0.1 db/migrate/20130410084606_install_audited.rb
translation_center-2.0.1 spec/dummy/db/migrate/20130410084712_install_audited.translation_center.rb
translation_center-1.7.2 test/dummy/db/migrate/20130410084711235602_install_audited.rb
artfully_ose-1.2.0 db/migrate/20130122143845_install_audited.rb
afalkear_translation_center-1.8.4 test/dummy/db/migrate/20130410084711235602_install_audited.rb
afalkear_translation_center-1.8.3 test/dummy/db/migrate/20130410084711235602_install_audited.rb
afalkear_translation_center-1.8.2 test/dummy/db/migrate/20130410084711235602_install_audited.rb
afalkear_translation_center-1.8.1 test/dummy/db/migrate/20130410084711235602_install_audited.rb
artfully_ose-1.2.0.beta.1 db/migrate/20130122143845_install_audited.rb
artfully_ose-1.2.0.alpha.2 db/migrate/20130122143845_install_audited.rb
afalkear_translation_center-1.8.0 test/dummy/db/migrate/20130410084711235602_install_audited.rb
afalkear_translation_center-1.7.9 test/dummy/db/migrate/20130410084711235602_install_audited.rb
afalkear_translation_center-1.7.8 test/dummy/db/migrate/20130410084711235602_install_audited.rb
afalkear_translation_center-0.0.0 test/dummy/db/migrate/20130410084711235602_install_audited.rb