discourse/db/migrate/20191205100434_create_stand...

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

23 lines
671 B
Ruby
Raw Normal View History

Improving bookmarks part 1 (#8466) Note: All of this functionality is hidden behind a hidden, default false, site setting called `enable_bookmarks_with_reminders`. Also, any feedback on Ember code would be greatly appreciated! This is part 1 of the bookmark improvements. The next PR will address the backend logic to send reminder notifications for bookmarked posts to users. This PR adds the following functionality: * We are adding a new `bookmarks` table and `Bookmark` model to make the bookmarks a first-class citizen and to allow attaching reminders to them. * Posts now have a new button in their actions menu that has the icon of an actual book * Clicking the button opens the new bookmark modal. * Both name and the reminder type are optional. * If you close the modal without doing anything, the bookmark is saved with no reminder. * If you click the Cancel button, no bookmark is saved at all. * All of the reminder type tiles are dynamic and the times they show will be based on your user timezone set in your profile (this should already be set for you). * If for some reason a user does not have their timezone set they will not be able to set a reminder, but they will still be able to create a bookmark. * A bookmark can be deleted by clicking on the book icon again which will be red if the post is bookmarked. This PR does NOT do anything to migrate or change existing bookmarks in the form of `PostActions`, the two features live side-by-side here. Also this does nothing to the topic bookmarking.
2019-12-10 23:04:02 -05:00
# frozen_string_literal: true
class CreateStandaloneBookmarksTable < ActiveRecord::Migration[6.0]
def up
create_table :bookmarks do |t|
t.references :user, index: true, foreign_key: true, null: false
t.references :topic, index: true, foreign_key: true, null: true
t.references :post, index: true, foreign_key: true, null: false
t.string :name, null: true
t.integer :reminder_type, null: true, index: true
t.datetime :reminder_at, null: true, index: true
t.timestamps
end
add_index :bookmarks, [:user_id, :post_id], unique: true
end
def down
drop_table(:bookmarks) if table_exists?(:bookmarks)
end
end