discourse/db/migrate/20230303015952_add_external...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
195 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddExternalToSidebarUrls < ActiveRecord::Migration[7.0]
def change
add_column :sidebar_urls, :external, :boolean, default: false, null: false
end
end