mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 23:24:56 +08:00
15 lines
418 B
Ruby
15 lines
418 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
class AddProcessedToNotifications < ActiveRecord::Migration[6.0]
|
||
|
def up
|
||
|
add_column :notifications, :processed, :boolean, default: false
|
||
|
execute "UPDATE notifications SET processed = true"
|
||
|
change_column_null(:notifications, :processed, false)
|
||
|
add_index :notifications, [:processed], unique: false
|
||
|
end
|
||
|
|
||
|
def down
|
||
|
remove_column :notifications, :processed
|
||
|
end
|
||
|
end
|