Class: CreateRecordHistories

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

Class Method Summary (collapse)

Class Method Details

+ (Object) down



18
19
20
# File 'lib/generators/record_history/templates/create_record_histories.rb', line 18

def self.down
  drop_table :record_histories
end

+ (Object) up



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# File 'lib/generators/record_history/templates/create_record_histories.rb', line 2

def self.up
  create_table  :record_histories do |t|
    t.string    :item_type, :null => false
    t.integer   :item_id,   :null => false
    t.string    :attr_name,   :null => false
    t.text      :old_value_dump, :null => false
    t.text      :new_value_dump, :null => false
    t.string    :author_type
    t.integer   :author_id
    t.datetime  :created_at
  end
  add_index :record_histories, [:item_type, :item_id, :attr_name]
  add_index :record_histories, [:item_type, :item_id]
  add_index :record_histories, [:author_type, :author_id]
end