Class: ActsAsAuditedMigration

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/audited_migration/templates/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



26
27
28
# File 'lib/generators/audited_migration/templates/migration.rb', line 26

def self.down
  drop_table :audits
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/generators/audited_migration/templates/migration.rb', line 2

def self.up
  create_table :audits, :force => true do |t|
    t.column :created_at, :datetime
    t.column :updated_at, :datetime
    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 :audit_changes, :text
    t.column :version, :integer, :default => 0
    t.column :comment, :string
  end
  if connection.adapter_name =~ /mysql/i
    execute 'ALTER TABLE audits ADD COLUMN full_model longtext collate utf8_unicode_ci' 
  else
    add_column :audits, :full_model, :text
  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