mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 18:13:39 +08:00
8 lines
189 B
Ruby
8 lines
189 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddSegmentToSidebarUrls < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :sidebar_urls, :segment, :integer, default: 0, null: false
|
||
|
end
|
||
|
end
|