Class: CreateCkeditorAssets

Inherits:
ActiveRecord::Migration
  • Object
show all
Defined in:
lib/generators/ckeditor/migration/templates/models/paperclip/migration.rb,
lib/generators/ckeditor/migration/templates/models/attachment_fu/migration.rb

Class Method Summary collapse

Class Method Details

.downObject



28
29
30
# File 'lib/generators/ckeditor/migration/templates/models/paperclip/migration.rb', line 28

def self.down
  drop_table :ckeditor_assets
end

.upObject



2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/generators/ckeditor/migration/templates/models/paperclip/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 => 25
    t.string  :guid, :limit => 10
  
  t.integer :locale, :limit => 1, :default => 0
  t.integer :user_id
  
    # 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_assetable_type"
add_index "ckeditor_assets", ["assetable_type", "assetable_id"], :name => "fk_assetable"
add_index "ckeditor_assets", ["user_id"], :name => "fk_user"
end