internetee-registry/db/migrate/20180824102834_change_notifications_read_to_not_null.rb
2018-08-24 13:33:39 +03:00

5 lines
140 B
Ruby

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