OSDN Git Service

2beec5a4fde7c3deb532a8f2cea5e7c65d4fdfb4
[pettanr/pettanr.git] / app / models / speech.rb
1 class Speech < ActiveRecord::Base
2   belongs_to :speech_balloon
3   
4   validates :speech_balloon_id, :numericality => {:allow_blank => true}
5   validates :x, :presence => true, :numericality => true
6   validates :y, :presence => true, :numericality => true
7   validates :width, :presence => true, :numericality => true, :natural_number => true
8   validates :height, :presence => true, :numericality => true, :natural_number => true
9 #  validates :settings, :presence => true
10 end