summaryrefslogtreecommitdiff
path: root/db/migrate/20191003250045_create_commit_user_mentions.rb
blob: 135c115c72569c3013658d027c450885a5d1e90f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

class CreateCommitUserMentions < ActiveRecord::Migration[5.2]
  DOWNTIME = false

  def change
    create_table :commit_user_mentions do |t|
      t.references :note, type: :integer,
                   index: { unique: true }, null: false, foreign_key: { on_delete: :cascade }
      t.binary     :commit_id, null: false
      t.integer    :mentioned_users_ids, array: true
      t.integer    :mentioned_projects_ids, array: true
      t.integer    :mentioned_groups_ids, array: true
    end

    add_index :commit_user_mentions, [:commit_id, :note_id], name: 'commit_user_mentions_on_commit_id_and_note_id_index'
  end
end