mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-27 04:51:14 +00:00
6bcfffa1ee
- Use ruby 2.7.7 as it fixed startup issues - Update gems - Remove depr. from puma startup - Make entry.sh dir-agnostic Fix tests: - Use apparition - Update migrations to use new syntax - Some other minor changes
17 lines
645 B
Ruby
17 lines
645 B
Ruby
class IncreaseArticleTextLimit < ActiveRecord::Migration[4.2]
|
|
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
|