Sha256: ed5ab231893e5b83f93b277f268eeba2b43c0db722bddff2a4d6827e983d9d4f
Contents?: true
Size: 1023 Bytes
Versions: 7
Compression:
Stored size: 1023 Bytes
Contents
class InstallAudited < ActiveRecord::Migration[5.0] 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 t.column :request_uuid, :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, :request_uuid add_index :audits, :created_at end def self.down drop_table :audits end end
Version data entries
7 entries across 7 versions & 1 rubygems