Files
discourse/db/migrate/20210318020143_add_pinned_column_to_bookmarks.rb
T

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

8 lines
179 B
Ruby
Raw Normal View History

2021-03-22 09:50:22 +10:00
# frozen_string_literal: true
class AddPinnedColumnToBookmarks < ActiveRecord::Migration[6.0]
def change
add_column :bookmarks, :pinned, :boolean, default: false
end
end