Sha256: 80e3ef36d9d2739b23a1d6abc2b8ca3e7af6f127d2bd8fd1f3f3ca64fbe05e6f
Contents?: true
Size: 283 Bytes
Versions: 20
Compression:
Stored size: 283 Bytes
Contents
class CreateFileDownloadStats < ActiveRecord::Migration 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
20 entries across 20 versions & 3 rubygems