class CreateCkeditorAssets

Public Class Methods

down() click to toggle source
# File lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb, line 23
def self.down
  drop_table :ckeditor_assets
end
up() click to toggle source
# File lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb, line 2
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.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
  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