Sha256: a952e3e19c463d3b5f0d77411f03945395c153d36c66b8b994284eb237c094b5

Contents?: true

Size: 781 Bytes

Versions: 1

Compression:

Stored size: 781 Bytes

Contents

class CreateCkeditorAssets < ActiveRecord::Migration
  def self.up
    create_table :ckeditor_assets do |t|
      t.string  :data_id, null: false
      t.string  :data_filename, null: false
      t.integer :data_size
      t.string  :data_content_type

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

      # Uncomment it to save images dimensions, if your need it
      t.integer :width
      t.integer :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/refile/migration.rb