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



14
15
16
17
# File 'lib/generators/record_history/templates/create_record_histories.rb', line 14

def self.down
  remove_index :versions, [:item_type, :item_id]
  drop_table :versions
end

+ (Object) up



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

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