mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
7 lines
208 B
Ruby
7 lines
208 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddTaskDueDateReminderNotification < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :my_modules, :due_date_notification_sent, :boolean, default: false
|
|
end
|
|
end
|