mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 02:02:01 +08:00
![Krzysztof Kotlarek](/assets/img/avatar_default.png)
Originally, only Discourse site links were available. After feedback, it was decided to extend this feature to external URLs. /t/93491
8 lines
195 B
Ruby
8 lines
195 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddExternalToSidebarUrls < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :sidebar_urls, :external, :boolean, default: false, null: false
|
|
end
|
|
end
|