Sha256: ca4aaf5ed621979f13523eaee5b302b65eaf6dcdf51fcb3f2f5868071ac0c708
Contents?: true
Size: 544 Bytes
Versions: 53
Compression:
Stored size: 544 Bytes
Contents
class CreateForemanTasks < ActiveRecord::Migration def change create_table :foreman_tasks_tasks, :id => false do |t| t.string :id, primary_key: true t.string :type, index: true, null: false t.string :label, index: true t.datetime :started_at, index: true t.datetime :ended_at, index: true t.string :state, index: true, null: false t.string :result, index: true, null: false t.decimal :progress, index: true, precision: 5, scale: 4 t.string :external_id, index: true end end end
Version data entries
53 entries across 53 versions & 1 rubygems