mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-05 00:44:53 +08:00
7 lines
210 B
Ruby
7 lines
210 B
Ruby
# 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
|