Sha256: 4a27aa75b07f9b1dfb04f4018b06e9df3114b749c09fc36b6c43501963680050
Contents?: true
Size: 479 Bytes
Versions: 19
Compression:
Stored size: 479 Bytes
Contents
class CreateAudits < ActiveRecord::Migration def self.up create_table :appstats_audits do |t| t.string :table_name t.string :column_type t.string :obj_name t.string :obj_attr t.string :obj_type t.integer :obj_id t.string :action t.string :old_value t.string :new_value t.text :old_value_full t.text :new_value_full t.timestamps end end def self.down drop_table :appstats_audits end end
Version data entries
19 entries across 19 versions & 1 rubygems