mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
10 lines
291 B
Ruby
10 lines
291 B
Ruby
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
|