Class: CreateCkeditorAssets
- Inherits:
-
ActiveRecord::Migration
- Object
- ActiveRecord::Migration
- CreateCkeditorAssets
- Defined in:
- lib/generators/ckeditor/templates/active_record/refile/migration.rb,
lib/generators/ckeditor/templates/active_record/dragonfly/migration.rb,
lib/generators/ckeditor/templates/active_record/paperclip/migration.rb,
lib/generators/ckeditor/templates/active_record/carrierwave/migration.rb
Class Method Summary collapse
Class Method Details
.down ⇒ Object
25 26 27 |
# File 'lib/generators/ckeditor/templates/active_record/refile/migration.rb', line 25 def self.down drop_table :ckeditor_assets end |
.up ⇒ Object
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
# File 'lib/generators/ckeditor/templates/active_record/refile/migration.rb', line 2 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. 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 |