debian-mirror-gitlab/db/migrate/20160829114652_add_markdown_cache_columns.rb

39 lines
1 KiB
Ruby
Raw Normal View History

2016-11-03 12:29:30 +05:30
# See http://doc.gitlab.com/ce/development/migration_style_guide.html
# for more information on how to write migrations for GitLab.
2019-02-15 15:39:39 +05:30
class AddMarkdownCacheColumns < ActiveRecord::Migration[4.2]
2016-11-03 12:29:30 +05:30
include Gitlab::Database::MigrationHelpers
# Set this constant to true if this migration requires downtime.
DOWNTIME = false
COLUMNS = {
abuse_reports: [:message],
appearances: [:description],
application_settings: [
:sign_in_text,
:help_page_text,
:shared_runners_text,
:after_sign_up_text
],
broadcast_messages: [:message],
issues: [:title, :description],
labels: [:description],
merge_requests: [:title, :description],
milestones: [:title, :description],
namespaces: [:description],
notes: [:note],
projects: [:description],
releases: [:description],
2017-09-10 17:25:29 +05:30
snippets: [:title, :content]
2017-08-17 22:00:37 +05:30
}.freeze
2016-11-03 12:29:30 +05:30
def change
COLUMNS.each do |table, columns|
columns.each do |column|
add_column table, "#{column}_html", :text
end
end
end
end