Sha256: e4fb41804bc966c158033b573a3a1d7927153fc2acbc392c89755845f336929e

Contents?: true

Size: 790 Bytes

Versions: 1

Compression:

Stored size: 790 Bytes

Contents

class CreateCkeditorAssets < ActiveRecord::Migration
  def self.up
    create_table :ckeditor_assets do |t|
      t.string  :data_uid, null: false
      t.string  :data_name, null: false
      t.string  :data_mime_type
      t.integer :data_size

      t.integer :assetable_id
      t.string  :assetable_type, limit: 30
      t.string  :type, limit: 30

      # Uncomment these to save image dimensions, if your need them.
      t.integer :data_width
      t.integer :data_height

      t.timestamps null: false
    end

    add_index :ckeditor_assets, [:assetable_type, :type, :assetable_id], name: :idx_ckeditor_assetable_type
    add_index :ckeditor_assets, [:assetable_type, :assetable_id], name: :idx_ckeditor_assetable
  end

  def self.down
    drop_table :ckeditor_assets
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ckeditor-4.2.0 lib/generators/ckeditor/templates/active_record/dragonfly/migration.rb