belongs_to :page, :class_name => 'WikiPage'
belongs_to :author, :class_name => 'User'
validates_presence_of :text
- validates_length_of :comments, :maximum => 255, :allow_nil => true
+ validates_length_of :comments, :maximum => 1024, :allow_nil => true
attr_protected :id
acts_as_versioned
<% end %>
<% end %>
-<p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120 %></p>
+<p><label><%= l(:field_comments) %></label><%= f.text_field :comments, :size => 120, :maxlength => 1024 %></p>
<p><label><%=l(:label_attachment_plural)%></label><%= render :partial => 'attachments/form' %></p>
</div>
--- /dev/null
+class ChangeWikiContentsCommentsLimitTo1024 < ActiveRecord::Migration
+ 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
put :update, :project_id => 1,
:id => 'Another_page',
:content => {
- :comments => 'a' * 300, # failure here, comment is too long
+ :comments => 'a' * 1300, # failure here, comment is too long
:text => 'edited'
},
:wiki_page => {