Sha256: 9973017697b001dcdf5082e9007037df62760e30101e8967ef20538550c36958

Contents?: true

Size: 573 Bytes

Versions: 4

Compression:

Stored size: 573 Bytes

Contents

# frozen_string_literal: true

class CreateCkeditorAssets < ActiveRecord::Migration[6.1]
  def 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.string  :data_fingerprint
      t.string  :type, limit: 30

      # Uncomment it to save images dimensions, if your need it
      # t.integer :width
      # t.integer :height

      t.timestamps null: false
    end

    add_index :ckeditor_assets, :type
  end

  def down
    drop_table :ckeditor_assets
  end
end

Version data entries

4 entries across 2 versions & 1 rubygems

Version Path
ckeditor-5.1.3 lib/generators/ckeditor/templates/active_record/active_storage/migration.rb
ckeditor-5.1.3 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb
ckeditor-5.1.2 lib/generators/ckeditor/templates/active_record/active_storage/migration.rb
ckeditor-5.1.2 lib/generators/ckeditor/templates/active_record/paperclip/migration.rb