Sha256: b4eaa6fdbeb3aff7ad0891b8cb083fc5f0858045a8ca5f36853183c999447d48

Contents?: true

Size: 766 Bytes

Versions: 44

Compression:

Stored size: 766 Bytes

Contents

class CreateAssets < ActiveRecord::Migration
  def self.up
    create_table :assets do |t|
      t.string :filename, :category, :description,  :content_type
      t.integer :size, :height , :width
      t.references :parent, :assetable
      t.string :assetable_type, :limit => 20
      t.string :thumbnail

      t.timestamps
    end
    
    add_index :assets, :content_type
    
    create_table :assetings do |t|
      t.references :asset, :assetable
      t.string :assetable_type, :limit => 20
      t.integer :position, :default => 1, :null => false 
      t.timestamps
    end
    
    add_index :assetings, :asset_id
    add_index :assetings, [:assetable_id, :assetable_type]
  end

  def self.down
    drop_table :assetings
    drop_table :assets
  end
end

Version data entries

44 entries across 44 versions & 1 rubygems

Version Path
beef-has_assets-0.1.1 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.0 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.1 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.10 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.2 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.3 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.5 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.6 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.7 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.8 generators/asset_migration/templates/migration.rb
beef-has_assets-0.2.9 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.1 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.2 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.3 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.4 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.5 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.6 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.7 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.8 generators/asset_migration/templates/migration.rb
beef-has_assets-0.3.9 generators/asset_migration/templates/migration.rb