~cytrogen/masto-fe

ref: 9e59186f78a1b170d4d15197a4bb439f66fd7e8f masto-fe/db/migrate/20170301222600_create_mutes.rb -rw-r--r-- 302 bytes
9e59186f — dependabot[bot] Bump glob from 10.2.2 to 10.2.6 (#25083) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
class CreateMutes < ActiveRecord::Migration[5.0]
  def change
    create_table :mutes do |t|
      t.integer :account_id, null: false
      t.integer :target_account_id, null: false
      t.timestamps null: false
    end

    add_index :mutes, [:account_id, :target_account_id], unique: true
  end
end