class InstDataShipperDumpBatches < CanvasSync::MiscHelper::MigrationClass def change create_table :inst_data_shipper_dump_batches do |t| t.datetime :started_at t.datetime :completed_at t.string :status t.string :job_class t.string :exception t.text :backtrace t.text :metadata t.text :job_arguments t.timestamps end end end