Sha256: 0d8207cc673fc07ad4a14a838f69eb8e7e4c3ef35f8bc434584dccf789357447
Contents?: true
Size: 802 Bytes
Versions: 27
Compression:
Stored size: 802 Bytes
Contents
class CreateEasyMLDatasets < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change create_table :easy_ml_datasets do |t| t.string :name, null: false t.string :description t.string :dataset_type t.string :status t.string :version t.bigint :datasource_id t.string :root_dir t.json :configuration t.bigint :num_rows t.string :workflow_status t.json :statistics t.json :preprocessor_statistics t.json :schema t.datetime :refreshed_at t.timestamps t.index :created_at t.index :refreshed_at t.index :name t.index :status t.index [:name, :status] t.index :datasource_id t.index :dataset_type t.index :workflow_status end end end
Version data entries
27 entries across 27 versions & 1 rubygems