Sha256: 873ce1b6e0e91b5a8a2de254fe1e960b5834cfcb31268f9fdb4d76a05f9ecdd3
Contents?: true
Size: 1.12 KB
Versions: 19
Compression:
Stored size: 1.12 KB
Contents
class <%= migration_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 :associated_id, :integer t.column :associated_type, :string t.column :user_id, :integer t.column :user_type, :string t.column :username, :string t.column :action, :string t.column :audited_changes, :text t.column :version, :integer, :default => 0 t.column :comment, :string t.column :remote_address, :string # added by senthil #======== t.column :meta, :string t.column :receiver_id, :integer t.column :checked, :boolean t.column :title, :string #======== t.column :created_at, :datetime end add_index :audits, [:auditable_id, :auditable_type], :name => 'auditable_index' add_index :audits, [:associated_id, :associated_type], :name => 'associated_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
19 entries across 19 versions & 2 rubygems