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

9 lines
164 B
Ruby
Raw Normal View History

class SchedulerStatus < ActiveRecord::Migration
def up
change_table :schedulers do |t|
t.string :error_message
t.string :status
end
end
end