Sha256: fc2ce7f798e4c2218c31236ac1032a249ff138466cac8997e6f7cb9719071b0e

Contents?: true

Size: 216 Bytes

Versions: 25

Compression:

Stored size: 216 Bytes

Contents

# frozen_string_literal: true

class <%= migration_class_name %> < <%= migration_parent %>
  def self.up
    add_column :audits, :comment, :string
  end

  def self.down
    remove_column :audits, :comment
  end
end

Version data entries

25 entries across 25 versions & 2 rubygems

Version Path
velocity_audited-5.1.4 lib/generators/audited/templates/add_comment_to_audits.rb
velocity_audited-5.1.3 lib/generators/audited/templates/add_comment_to_audits.rb
audited-5.0.2 lib/generators/audited/templates/add_comment_to_audits.rb
audited-5.0.1 lib/generators/audited/templates/add_comment_to_audits.rb
audited-5.0.0 lib/generators/audited/templates/add_comment_to_audits.rb