debian-mirror-gitlab/db/migrate/20130611210815_increase_snippet_text_column_size.rb
2016-06-16 23:09:34 +05:30

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