summaryrefslogtreecommitdiff
path: root/db/migrate/20171122131600_add_new_project_guidelines_to_appearances.rb
blob: f141c442d9790c7efd825591f54e434fd1cfee45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class AddNewProjectGuidelinesToAppearances < ActiveRecord::Migration
  include Gitlab::Database::MigrationHelpers

  DOWNTIME = false

  def change
    change_table :appearances do |t|
      t.text :new_project_guidelines
      t.text :new_project_guidelines_html
    end
  end
end