gitlab-org--gitlab-foss/db/migrate/20130611210815_increase_sni...

11 lines
222 B
Ruby

# rubocop:disable all
class IncreaseSnippetTextColumnSize < ActiveRecord::Migration
def up
# MYSQL LARGETEXT for snippet
change_column :snippets, :content, :text, :limit => 4294967295
end
def down
end
end