You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
291 B
10 lines
291 B
4 years ago
|
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
|