jdruk/mycroft-for-us

View on GitHub
app/db/migrate/20190526135354_create_notable_jobs.rb

Summary

Maintainability
A
0 mins
Test Coverage
class CreateNotableJobs < ActiveRecord::Migration[5.2]
  def change
    create_table :notable_jobs do |t|
      t.string :note_type
      t.text :note
      t.text :job
      t.string :job_id
      t.string :queue
      t.decimal :runtime
      t.decimal :queued_time
      t.timestamp :created_at
    end
  end
end