Sha256: 027df0662fa4fd1e63652329abc61693b08ce06b46b37d57fe141e4512871388

Contents?: true

Size: 1.04 KB

Versions: 10

Compression:

Stored size: 1.04 KB

Contents

# == Schema Information
#
# Table name: easy_ml_column_histories
#
#  id                  :bigint           not null, primary key
#  column_id           :integer          not null
#  dataset_id          :integer          not null
#  name                :string           not null
#  description         :string
#  datatype            :string
#  polars_datatype     :string
#  is_target           :boolean
#  hidden              :boolean          default(FALSE)
#  drop_if_null        :boolean          default(FALSE)
#  preprocessing_steps :json
#  sample_values       :json
#  statistics          :json
#  created_at          :datetime         not null
#  updated_at          :datetime         not null
#  history_started_at  :datetime         not null
#  history_ended_at    :datetime
#  history_user_id     :integer
#  snapshot_id         :string
#  is_date_column      :boolean          default(FALSE)
#
module EasyML
  class ColumnHistory < ActiveRecord::Base
    self.table_name = "easy_ml_column_histories"
    include Historiographer::History
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
easy_ml-0.2.0.pre.rc57 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc56 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc55 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc52 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc51 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc50 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc49 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc48 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc47 app/models/easy_ml/column_history.rb
easy_ml-0.2.0.pre.rc46 app/models/easy_ml/column_history.rb