Sha256: d1abf8000bfc1b4f99b55087d948ab386bcf0cecc503540dbf3371f4d401b049

Contents?: true

Size: 789 Bytes

Versions: 6

Compression:

Stored size: 789 Bytes

Contents

class CreateCkeditorAssets < ActiveRecord::Migration
  def self.up
    create_table :ckeditor_assets do |t|
      t.string  :data_file_name, null: false
      t.string  :data_content_type
      t.integer :data_file_size
      t.string  :data_fingerprint
      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

6 entries across 6 versions & 2 rubygems

Version Path
danabr75-ckeditor-4.1.6 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb
glebtv-ckeditor-4.5.10.3 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb
glebtv-ckeditor-4.5.10.2 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb
glebtv-ckeditor-4.5.10.1 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb
glebtv-ckeditor-4.5.7.1 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb
glebtv-ckeditor-4.5.7 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb