Sha256: 888605ff4cfc96b6d86214a131e6e5799b7cdfb4a35b4787f6ede375d2e2e242
Contents?: true
Size: 461 Bytes
Versions: 11
Compression:
Stored size: 461 Bytes
Contents
class CreateEasyMLSplitters < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change unless table_exists?(:easy_ml_splitters) create_table :easy_ml_splitters do |t| t.string :splitter_type, null: false t.json :configuration t.bigint :dataset_id, null: false t.timestamps t.index :splitter_type t.index :created_at t.index :dataset_id end end end end
Version data entries
11 entries across 11 versions & 1 rubygems