internetee-registry/db/migrate/20180824102834_change_notifications_read_to_not_null.rb
2021-04-26 18:54:26 +05:00

5 lines
145 B
Ruby

class ChangeNotificationsReadToNotNull < ActiveRecord::Migration[6.0]
def change
change_column_null :notifications, :read, false
end
end