Sha256: 054c7a115e0cc887ec477f88228b800e68eb41272e22ddf804627f66865b28e0
Contents?: true
Size: 322 Bytes
Versions: 2
Compression:
Stored size: 322 Bytes
Contents
class CreateJobNotifierJobs < ActiveRecord::Migration def change create_table :job_notifier_jobs do |t| t.string :identifier, index: true t.string :job_id, index: true t.string :status t.text :result t.boolean :notified, default: false t.timestamps null: false end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
job_notifier-0.1.1 | db/migrate/20160401185325_create_job_notifier_jobs.rb |
job_notifier-0.1.0 | db/migrate/20160401185325_create_job_notifier_jobs.rb |