Sha256: 045687c55603915e91e5d68fec1fa27ddac7bfe1990e9cca9d610fb2ecc9f51f

Contents?: true

Size: 727 Bytes

Versions: 9

Compression:

Stored size: 727 Bytes

Contents

class CreateCkeditorAssets < ActiveRecord::Migration

  def change
    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

      # Save images dimensions
      t.integer :width
      t.integer :height

      t.integer :contents_count, :integer, default: 0

      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

end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
georgia-0.7.8 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.7 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.6 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.5 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.4 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.3 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.2 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.1 db/migrate/001_create_ckeditor_assets.rb
georgia-0.7.0 db/migrate/001_create_ckeditor_assets.rb