about summary refs log tree commit diff
path: root/db/migrate/20220714171049_create_tag_follows.rb
blob: a393e90f5086bd42d816cd707cae69bbce174292 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
class CreateTagFollows < ActiveRecord::Migration[6.1]
  def change
    create_table :tag_follows do |t|
      t.belongs_to :tag, null: false, foreign_key: { on_delete: :cascade }
      t.belongs_to :account, null: false, foreign_key: { on_delete: :cascade }, index: false

      t.timestamps
    end

    add_index :tag_follows, [:account_id, :tag_id], unique: true
  end
end