Sha256: dc36530f14b6f9441c58a2840d539ac8ca37a5d24384cd5c1dc4f22d193d1c8d

Contents?: true

Size: 742 Bytes

Versions: 1

Compression:

Stored size: 742 Bytes

Contents

class <%= class_name %> < 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 :audit_version, :integer, :default => 0
      t.column :comment, :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  
  end

  def self.down
    drop_table :audits
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ericperko-acts_as_audited-1.1.2 generators/audited_migration/templates/migration.rb