mirror of
https://github.com/discourse/discourse.git
synced 2025-02-07 04:36:32 +08:00
8 lines
179 B
Ruby
8 lines
179 B
Ruby
![]() |
# frozen_string_literal: true
|
||
|
|
||
|
class AddPinnedColumnToBookmarks < ActiveRecord::Migration[6.0]
|
||
|
def change
|
||
|
add_column :bookmarks, :pinned, :boolean, default: false
|
||
|
end
|
||
|
end
|