Sha256: d6159a97ad73185a161eb9b78a387c5dd37612750cbfb5f1b79a3c6f9fb9c93b

Contents?: true

Size: 754 Bytes

Versions: 50

Compression:

Stored size: 754 Bytes

Contents

# == Schema Information
#
# Table name: easy_ml_datasource_histories
#
#  id                 :bigint           not null, primary key
#  datasource_id      :integer          not null
#  name               :string           not null
#  datasource_type    :string
#  root_dir           :string
#  configuration      :json
#  refreshed_at       :datetime
#  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 DatasourceHistory < ActiveRecord::Base
    self.table_name = "easy_ml_datasource_histories"
    include Historiographer::History
  end
end

Version data entries

50 entries across 50 versions & 1 rubygems

Version Path
easy_ml-0.2.0.pre.rc10 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc9 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc8 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc7 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc6 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc5 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc4 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc3 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc2 app/models/easy_ml/datasource_history.rb
easy_ml-0.2.0.pre.rc1 app/models/easy_ml/datasource_history.rb