mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-15 05:34:53 +08:00
7 lines
174 B
Ruby
7 lines
174 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddErrorMetadataToTasks < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :my_modules, :last_transition_error, :jsonb
|
|
end
|
|
end
|