Sha256: 08c091b61b7ada49c0043d626f692271912ca598fb29eaa92af8a5d3e7b68d24
Contents?: true
Size: 850 Bytes
Versions: 42
Compression:
Stored size: 850 Bytes
Contents
# This migration comes from activeadmin_selleo_cms (originally 20121204112326) 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.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 def self.down drop_table :ckeditor_assets end end
Version data entries
42 entries across 42 versions & 1 rubygems