Sha256: 2d9ced5a129382692528b2f4d80e263655c82c82d5a4221e60253ec5970786b0

Contents?: true

Size: 288 Bytes

Versions: 15

Compression:

Stored size: 288 Bytes

Contents

class CreateFileDownloadStats < ActiveRecord::Migration[4.2]
  def change
    create_table :file_download_stats do |t|
      t.datetime :date
      t.integer :downloads
      t.string :file_id

      t.timestamps null: false
    end
    add_index :file_download_stats, :file_id
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
hyrax-1.1.1 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-1.1.0 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.rc3 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.rc2 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.rc1 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-1.0.5 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.beta5 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.beta4 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.beta3 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.beta2 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-2.0.0.beta1 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-1.0.4 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-1.0.3 db/migrate/20160328222229_create_file_download_stats.rb
hyrax-1.0.2 db/migrate/20160328222229_create_file_download_stats.rb