2019-02-15 15:39:39 +05:30
|
|
|
class AddDescriptionToSnippets < ActiveRecord::Migration[4.2]
|
2017-09-10 17:25:29 +05:30
|
|
|
include Gitlab::Database::MigrationHelpers
|
|
|
|
|
|
|
|
DOWNTIME = false
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def change
|
|
|
|
add_column :snippets, :description, :text
|
|
|
|
add_column :snippets, :description_html, :text
|
|
|
|
end
|
|
|
|
end
|