trabajo-afectivo/db/migrate/20170515000001_scheduler_status.rb

9 lines
169 B
Ruby
Raw Normal View History

2017-09-07 13:06:51 +00:00
class SchedulerStatus < ActiveRecord::Migration[4.2]
def up
change_table :schedulers do |t|
t.string :error_message
t.string :status
end
end
end