mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 10:20:58 -06:00
5968dc07a5
This commit promotes all post_deploy migrations which existed in Discourse v2.6.7 (timestamp <= 20201110110952)
12 lines
280 B
Ruby
12 lines
280 B
Ruby
# frozen_string_literal: true
|
|
|
|
class RemoveBookmarksDeleteWhenReminderSent < ActiveRecord::Migration[6.0]
|
|
def up
|
|
remove_column :bookmarks, :delete_when_reminder_sent
|
|
end
|
|
|
|
def down
|
|
add_column :bookmarks, :delete_when_reminder_sent, :boolean, default: false
|
|
end
|
|
end
|