Nuevo plugin Redmine CKEditor 1.1.5

This commit is contained in:
Manuel Cillero 2018-02-02 22:25:19 +01:00
parent 64924a6376
commit 698e4e7c3c
635 changed files with 24046 additions and 0 deletions

View file

@ -0,0 +1,18 @@
# This migration comes from rich (originally 20111002142937)
class CreateRichRichImages < ActiveRecord::Migration
def change
create_table :rich_rich_images do |t|
t.timestamps
t.string :image_file_name
t.string :image_content_type
t.integer :image_file_size
t.datetime :image_updated_at
t.string :owner_type
t.integer :owner_id
end
end
end

View file

@ -0,0 +1,6 @@
# This migration comes from rich (originally 20111117202133)
class AddUriCacheToRichImage < ActiveRecord::Migration
def change
add_column :rich_rich_images, :uri_cache, :text
end
end

View file

@ -0,0 +1,13 @@
# This migration comes from rich (originally 20111201095829)
class RefactorImageToFile < ActiveRecord::Migration
def change
rename_table :rich_rich_images, :rich_rich_files
rename_column :rich_rich_files, :image_file_name, :rich_file_file_name
rename_column :rich_rich_files, :image_content_type, :rich_file_content_type
rename_column :rich_rich_files, :image_file_size, :rich_file_file_size
rename_column :rich_rich_files, :image_updated_at, :rich_file_updated_at
add_column :rich_rich_files, :simplified_type, :string, :default => "file"
end
end