Sha256: d09bce610601b3be2fc40a88655d9663279adbab96ad030fa8b948ec155154e9
Contents?: true
Size: 531 Bytes
Versions: 11
Compression:
Stored size: 531 Bytes
Contents
class CreateEasyMLModelFiles < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change unless table_exists?(:easy_ml_model_files) create_table :easy_ml_model_files do |t| t.string :filename, null: false t.string :path, null: false t.json :configuration t.string :model_type t.bigint :model_id t.timestamps t.index :created_at t.index :filename t.index [:model_type] t.index :model_id end end end end
Version data entries
11 entries across 11 versions & 1 rubygems