summaryrefslogtreecommitdiff
path: root/db/migrate/20170410133135_add_version_field_to_markdown_cache.rb
blob: c019e0627d3ac538fc4e87dd3e979a5490791505 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
class AddVersionFieldToMarkdownCache < ActiveRecord::Migration[4.2]
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    %i[
      abuse_reports
      appearances
      application_settings
      broadcast_messages
      issues
      labels
      merge_requests
      milestones
      namespaces
      notes
      projects
      releases
      snippets
    ].each do |table|
      add_column table, :cached_markdown_version, :integer, limit: 4
    end
  end
end