mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
704a6b4e9b
Changed login field text Changed database configuration connection pool size to be configured via dotenv Use a single BBcode parser library Added better translations coverage Code formatting Increases maximum article text limit Added database cleaner with the deletion strategy during testing
17 lines
640 B
Ruby
17 lines
640 B
Ruby
class IncreaseArticleTextLimit < ActiveRecord::Migration
|
|
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
|