Files
maybe/db/migrate/20241227142333_add_error_trace_to_syncs.rb
2024-12-30 10:04:05 -05:00

6 lines
141 B
Ruby

class AddErrorTraceToSyncs < ActiveRecord::Migration[7.2]
def change
add_column :syncs, :error_backtrace, :text, array: true
end
end