mirror of
https://github.com/redmine/redmine.git
synced 2025-11-10 07:16:03 +01:00
10 lines
290 B
Ruby
10 lines
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
|