discourse/db/migrate/20170425172415_add_error_to...

8 lines
163 B
Ruby

# frozen_string_literal: true
class AddErrorToSchedulerStats < ActiveRecord::Migration[4.2]
def change
add_column :scheduler_stats, :error, :text
end
end