Sha256: 373c4ed2f47f0b2ee630961421cfeea5da27d1f102054907e8deba35bfbdbd75
Contents?: true
Size: 559 Bytes
Versions: 32
Compression:
Stored size: 559 Bytes
Contents
class CreateForemanTasks < ActiveRecord::Migration def change create_table :foreman_tasks_tasks, :id => false, :primary_key => :id do |t| t.string :id, null: false 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
32 entries across 32 versions & 1 rubygems