Sha256: cf95945cafeb0204d8b6291d004ea3e0c8b4a403ee1a4925fc1476dd95942067
Contents?: true
Size: 1005 Bytes
Versions: 44
Compression:
Stored size: 1005 Bytes
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 # module EasyML class ColumnHistory < ActiveRecord::Base self.table_name = "easy_ml_column_histories" include Historiographer::History end end
Version data entries
44 entries across 44 versions & 1 rubygems