mirror of
https://git.bsd.gay/fef/nyastodon.git
synced 2024-12-26 07:53:43 +01:00
5 lines
169 B
Ruby
5 lines
169 B
Ruby
class AddHideNotificationsToMute < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :mutes, :hide_notifications, :boolean, default: false, null: false
|
|
end
|
|
end
|