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

10 lines
200 B
Ruby

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