Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
discourse-annotator / db / migrate / 20220217141156_change_discourse_annotator_revision_number.rb
Size: Mime:
class ChangeDiscourseAnnotatorRevisionNumber < ActiveRecord::Migration[6.1]
  def change
    change_column :discourse_annotator_annotations, :revision_number, :integer, null: true

    DiscourseAnnotator::Annotation.update_all(revision_number: nil)
  end
end