Sha256: 6770bb2ad533bc508906ac1670b11b263579f2817352cdde9eec3ea2457725d5

Contents?: true

Size: 925 Bytes

Versions: 5

Compression:

Stored size: 925 Bytes

Contents

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

    add_index :audits, [:auditable_id, :auditable_type], :name => 'auditable_index'
    add_index :audits, [:user_id, :user_type], :name => 'user_index'
    add_index :audits, :created_at
    add_index :audits, [:auditable_parent_id, :auditable_parent_type], :name => 'auditable_parent_index'
  end

  def self.down
    drop_table :audits
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
foreman_discovery-1.0.0 test/foreman_app/db/migrate/20090714132449_add_audits_table.rb
foreman_discovery-1.0.0.rc4 test/foreman_app/db/migrate/20090714132449_add_audits_table.rb
foreman_discovery-1.0.0.rc3 test/foreman_app/db/migrate/20090714132449_add_audits_table.rb
foreman_discovery-1.0.0.rc2 test/foreman_app/db/migrate/20090714132449_add_audits_table.rb
foreman_discovery-1.0.0.rc1 test/foreman_app/db/migrate/20090714132449_add_audits_table.rb