note as text
This commit is contained in:
parent
5fe736ab28
commit
9611a27e0c
|
@ -13,7 +13,7 @@ class Note < ActiveRecord::Base
|
||||||
|
|
||||||
validates :note,
|
validates :note,
|
||||||
:presence => true,
|
:presence => true,
|
||||||
:length => { :within => 0..255 }
|
:length => { :within => 0..5000 }
|
||||||
|
|
||||||
validates :attachment,
|
validates :attachment,
|
||||||
:file_size => {
|
:file_size => {
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
|
|
||||||
%div
|
%div
|
||||||
= f.label :note
|
= f.label :note
|
||||||
%cite (255 symbols only)
|
%cite
|
||||||
%br
|
%br
|
||||||
= f.text_area :note, :size => 255
|
= f.text_area :note, :size => 255
|
||||||
|
|
||||||
|
|
8
db/migrate/20111027142641_change_note_note_to_text.rb
Normal file
8
db/migrate/20111027142641_change_note_note_to_text.rb
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
class ChangeNoteNoteToText < ActiveRecord::Migration
|
||||||
|
def up
|
||||||
|
change_column :notes, :note, :text
|
||||||
|
end
|
||||||
|
|
||||||
|
def down
|
||||||
|
end
|
||||||
|
end
|
|
@ -11,7 +11,7 @@
|
||||||
#
|
#
|
||||||
# It's strongly recommended to check this file into your version control system.
|
# It's strongly recommended to check this file into your version control system.
|
||||||
|
|
||||||
ActiveRecord::Schema.define(:version => 20111025134235) do
|
ActiveRecord::Schema.define(:version => 20111027142641) do
|
||||||
|
|
||||||
create_table "issues", :force => true do |t|
|
create_table "issues", :force => true do |t|
|
||||||
t.string "title"
|
t.string "title"
|
||||||
|
@ -36,7 +36,7 @@ ActiveRecord::Schema.define(:version => 20111025134235) do
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "notes", :force => true do |t|
|
create_table "notes", :force => true do |t|
|
||||||
t.string "note"
|
t.text "note", :limit => 255
|
||||||
t.string "noteable_id"
|
t.string "noteable_id"
|
||||||
t.string "noteable_type"
|
t.string "noteable_type"
|
||||||
t.integer "author_id"
|
t.integer "author_id"
|
||||||
|
|
Loading…
Reference in a new issue