Sha256: d0f32683902e973bce26935c81bc6ed843fbdabf4958db44a8c3532b7f15f8d2

Contents?: true

Size: 852 Bytes

Versions: 1

Compression:

Stored size: 852 Bytes

Contents

# This migration comes from ecm_downloads_engine (originally 2)
class CreateEcmDownloadsDownloads < ActiveRecord::Migration
  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

1 entries across 1 versions & 1 rubygems

Version Path
ecm_downloads2_backend-1.0.0 spec/dummy/db/migrate/20151130141606_create_ecm_downloads_downloads.ecm_downloads_engine.rb