mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-09-10 07:05:57 +08:00
7 lines
222 B
Ruby
7 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddIncludeSerializedSubjectToWebhooks < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_column :webhooks, :include_serialized_subject, :boolean, null: false, default: false
|
|
end
|
|
end
|