Sha256: acb926c5ffac52196418e0f6d8347168154866a24d8ac10754d83f2d9168e13b

Contents?: true

Size: 854 Bytes

Versions: 3

Compression:

Stored size: 854 Bytes

Contents

# This migration comes from ecm_downloads_engine (originally 2)
class CreateEcmDownloadsDownloads < ActiveRecord::Migration[4.2]
  def change
    create_table :ecm_downloads_downloads do |t|
      t.string :name
      t.text :description
      t.timestamp :published_at

      # references
      t.references :ecm_downloads_download_category

      # acts as list
      t.integer :position

      # friendly id
      t.string :slug

      # paperclip
      # t.attachment :asset
      t.string :asset_file_name
      t.integer :asset_file_size
      t.string :asset_content_type
      t.timestamp :asset_updated_at
      t.string :asset_fingerprint

      t.timestamps
    end
    add_index :ecm_downloads_downloads,
              :ecm_downloads_download_category_id,
              name: 'index_ecm_downloads_downloads_on_download_category_id'
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ecm_downloads2_backend-2.1.0 spec/dummy/db/migrate/20151130141606_create_ecm_downloads_downloads.ecm_downloads_engine.rb
ecm_downloads2_backend-2.0.2 spec/dummy/db/migrate/20151130141606_create_ecm_downloads_downloads.ecm_downloads_engine.rb
ecm_downloads2_backend-2.0.1 spec/dummy/db/migrate/20151130141606_create_ecm_downloads_downloads.ecm_downloads_engine.rb