Files
discourse/db/migrate/20200306060737_add_reminder_set_at_to_bookmarks.rb
T

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

9 lines
229 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddReminderSetAtToBookmarks < ActiveRecord::Migration[6.0]
def change
add_column :bookmarks, :reminder_set_at, :datetime, null: true
add_index :bookmarks, :reminder_set_at
end
end