20150510083747_change_documents_title_limit.rb
9 lines
| 290 B
| text/x-ruby
|
RubyLexer
|
r13879 | class ChangeDocumentsTitleLimit < ActiveRecord::Migration | ||
def self.up | ||||
change_column :documents, :title, :string, :limit => nil, :default => '', :null => false | ||||
end | ||||
def self.down | ||||
change_column :documents, :title, :string, :limit => 60, :default => '', :null => false | ||||
end | ||||
end | ||||