Sha256: a789787bfca5404e13641d9ad80a28df8bc0fa9270b8ca8fd2e3255f53130c09
Contents?: true
Size: 452 Bytes
Versions: 40
Compression:
Stored size: 452 Bytes
Contents
class CreateEasyMLModelFiles < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change 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
Version data entries
40 entries across 40 versions & 1 rubygems