discourse/plugins/chat/db/migrate/20211129171229_create_chat_uploads.rb
Roman Rizzi 0a5f548635
DEV: Move discourse-chat to the core repo. (#18776)
As part of this move, we are also renaming `discourse-chat` to `chat`.
2022-11-02 10:41:30 -03:00

14 lines
334 B
Ruby

# frozen_string_literal: true
class CreateChatUploads < ActiveRecord::Migration[6.1]
def change
create_table :chat_uploads do |t|
t.integer :chat_message_id, null: false
t.integer :upload_id, null: false
t.timestamps
end
add_index :chat_uploads, %i[chat_message_id upload_id], unique: true
end
end