13 lines
271 B
Ruby
13 lines
271 B
Ruby
|
class AddDescriptionToSnippets < ActiveRecord::Migration
|
||
|
include Gitlab::Database::MigrationHelpers
|
||
|
|
||
|
DOWNTIME = false
|
||
|
|
||
|
disable_ddl_transaction!
|
||
|
|
||
|
def change
|
||
|
add_column :snippets, :description, :text
|
||
|
add_column :snippets, :description_html, :text
|
||
|
end
|
||
|
end
|