mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 05:50:14 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
28 lines
760 B
Ruby
28 lines
760 B
Ruby
# frozen_string_literal: true
|
|
|
|
class CreateChatTables < ActiveRecord::Migration[6.0]
|
|
def change
|
|
create_table :topic_chats do |t|
|
|
t.integer :topic_id, null: false, index: true, unique: true
|
|
t.datetime :deleted_at
|
|
t.integer :deleted_by_id
|
|
|
|
t.integer :featured_in_category_id
|
|
t.integer :delete_after_seconds, default: nil
|
|
end
|
|
|
|
create_table :topic_chat_messages do |t|
|
|
t.integer :topic_id, null: false
|
|
t.integer :post_id, null: false, index: true
|
|
t.integer :user_id, null: true
|
|
t.timestamps
|
|
t.datetime :deleted_at
|
|
t.integer :deleted_by_id
|
|
t.integer :in_reply_to_id, null: true
|
|
t.text :message
|
|
end
|
|
|
|
add_index :topic_chat_messages, %i[topic_id created_at]
|
|
end
|
|
end
|