Sha256: 43bbc56491a21cbc49a5c89490efa7f448552b990f08da546010ded1e88140f8
Contents?: true
Size: 288 Bytes
Versions: 34
Compression:
Stored size: 288 Bytes
Contents
class CreateFileDownloadStats < ActiveRecord::Migration[5.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
34 entries across 24 versions & 1 rubygems