0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-08 17:53:55 +08:00
discourse/plugins/discourse-user-notes/db/migrate/20190724200243_rename_staff_notes.rb
2025-07-15 16:38:05 +02:00

7 lines
210 B
Ruby
Vendored

# frozen_string_literal: true
class RenameStaffNotes < ActiveRecord::Migration[5.2]
def change
execute "UPDATE site_settings SET name = 'user_notes_enabled' WHERE name = 'staff_notes_enabled'"
end
end