blob: 9f85a7c6186531773721c6d52eb1459cb94be293 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class ChangeWikiContentsCommentsLimitTo1024 < ActiveRecord::Migration[4.2]
def self.up
change_column :wiki_content_versions, :comments, :string, :limit => 1024, :default => ''
change_column :wiki_contents, :comments, :string, :limit => 1024, :default => ''
end
def self.down
change_column :wiki_content_versions, :comments, :string, :limit => 255, :default => ''
change_column :wiki_contents, :comments, :string, :limit => 255, :default => ''
end
end
|