mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-19 07:32:34 +08:00
6 lines
168 B
Ruby
6 lines
168 B
Ruby
|
class AddTaskDueDateReminderNotification < ActiveRecord::Migration[7.0]
|
||
|
def change
|
||
|
add_column :my_modules, :notification_sent, :boolean, default: false
|
||
|
end
|
||
|
end
|