2023-02-19 15:08:46 +00:00
|
|
|
class IncreaseArticleTextLimit < ActiveRecord::Migration[4.2]
|
2014-03-30 19:50:52 +00:00
|
|
|
def up
|
|
|
|
change_column :articles, :text, :text, :limit => 16777215
|
|
|
|
change_column :articles, :text_parsed, :text, :limit => 16777215
|
|
|
|
|
|
|
|
change_column :article_versions, :text, :text, :limit => 16777215
|
|
|
|
change_column :article_versions, :text_parsed, :text, :limit => 16777215
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
change_column :articles, :text, :text, :limit => 65535
|
|
|
|
change_column :articles, :text_parsed, :text, :limit => 65535
|
|
|
|
|
|
|
|
change_column :article_versions, :text, :text, :limit => 65535
|
|
|
|
change_column :article_versions, :text_parsed, :text, :limit => 65535
|
|
|
|
end
|
|
|
|
end
|