discourse/db/migrate/20190820192341_create_topic_group_table.rb
Roman Rizzi 7c741fa0d6
FEATURE: Publish read state on group messages. (Originally introduced in #7989) (#8025)
* Revert "Revert "FEATURE: Publish read state on group messages. (#7989) [Undo revert] (#8024)""

This reverts commit 36425eb9f0.

* Fix: Show who read only if the attribute is enabled

* PERF: Precalculate the last post  readed by a group member

* Use book-reader icon instear of far-eye

* FIX: update topic groups correctly

* DEV: Tidy up read indicator update on write
2019-08-27 09:09:00 -03:00

15 lines
398 B
Ruby

# frozen_string_literal: true
class CreateTopicGroupTable < ActiveRecord::Migration[5.2]
def change
create_table :topic_groups do |t|
t.integer :group_id, null: false
t.integer :topic_id, null: false
t.integer :last_read_post_number, null: false, default: 0
t.timestamps null: false
end
add_index :topic_groups, %i[group_id topic_id], unique: true
end
end