about summary refs log tree commit diff
path: root/db/migrate/20210324171613_create_follow_recommendation_suppressions.rb
blob: c17a0be635847c855f180a16ce53cb9386370655 (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreateFollowRecommendationSuppressions < ActiveRecord::Migration[6.1]
  def change
    create_table :follow_recommendation_suppressions do |t|
      t.references :account, null: false, foreign_key: { on_delete: :cascade }, index: { unique: true }

      t.timestamps
    end
  end
end