1
0
espelhamento de https://github.com/redmine/redmine.git sincronizado 2024-08-06 09:06:37 +02:00
redmine/db/migrate/20150510083747_change_documents_title_limit.rb
2015-05-10 08:45:56 +00:00

10 linhas
290 B
Ruby

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