mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-06 13:14:29 +08:00
8 lines
318 B
Ruby
8 lines
318 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddDueDateReminderNotificationColumns < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :projects, :due_date_notification_sent, :boolean, default: false, null: false
|
|
add_column :experiments, :due_date_notification_sent, :boolean, default: false, null: false
|
|
end
|
|
end
|