Sha256: 3a8e115f4952d55f448b2338c0e8143c420f96fa5f2a6c554f1b903159ff53bd
Contents?: true
Size: 662 Bytes
Versions: 40
Compression:
Stored size: 662 Bytes
Contents
class CreateEasyMLDeploys < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change create_table :easy_ml_deploys do |t| t.bigint :model_id t.bigint :model_history_id t.bigint :retraining_run_id t.bigint :model_file_id t.string :status, null: false t.string :trigger, default: 'manual' t.text :stacktrace t.string :snapshot_id t.timestamps t.index :created_at t.index :model_id t.index :model_history_id t.index :snapshot_id t.index :model_file_id t.index :retraining_run_id t.index :status t.index :trigger end end end
Version data entries
40 entries across 40 versions & 1 rubygems