rails:1492
From: sono <skymap_sora@y...>
Date: Thu, 10 Aug 2006 12:38:23 +0900 (JST)
Subject: [rails:1492] Re: rails 本の depot アプリケーションに挑戦しています。
sonoです。
//product.rb
class Product < ActiveRecord::Base
validates_presence_of :title, :description, :image_url
validates_numericality_of :price
validates_uniqueness_of :title
validates_format_of :image_url, :with =>
%r{^http:.+?.(gif|jpg|jpeg|png)$}i, :message => "
はgif,jpg,pngのURLでなければなりません。"
def self.salable_items
find(:all,
:conditions => "date_available <= now()",
:order => "date_available desc")
end
protected
def validate
errors.add(:price, "は、0より大きくなければなりません。") unless
price.nil? || price > 0.0
end
end
//create.sql
drop table if exists line_items;
create table line_items(
id int not null auto_increment,
product_id int not null,
quantity int not null default 0,
unit_price decimal(10,2) not null,
constraint fk_items_product foreign key (product_id)
references products(id),
primary key (id)
);
> 私が勉強のために本から移したソースに、sonoさんからいただいた三つの
> ファイルのみを上書きして(前出のタイプミスも直して)実行してみても
> そのようなエラーは出ないですね。
そうですか・・。
ちょっと自身の無いlineItemsのcreate.sqlと、
productクラスを載せてみます。
お気づきの点がございましたら、お願いします。
productクラス、protectedの下にself.salable_itemsもあったので、
それはprotectedの上に持ってきました。
しかしながら、結果は変わりませんでした。。
--
ML: rails@r...
使い方: http://QuickML.com/
1482 2006-08-10 03:34 [skymap_sora@y... ] rails 本の depot アプリケーションに挑戦しています。 1483 2006-08-10 03:40 ┣[ochi@c... ] 1484 2006-08-10 03:45 ┃┗[skymap_sora@y... ] 1486 2006-08-10 03:53 ┃ ┗[ochi@c... ] 1487 2006-08-10 04:07 ┃ ┗[skymap_sora@y... ] 1489 2006-08-10 04:18 ┃ ┗[ochi@c... ] 1490 2006-08-10 04:59 ┃ ┗[skymap_sora@y... ] 1491 2006-08-10 05:12 ┃ ┣[ochi@c... ] -> 1492 2006-08-10 05:38 ┃ ┃┗[skymap_sora@y... ] 1493 2006-08-10 06:04 ┃ ┃ ┗[skymap_sora@y... ] 1495 2006-08-10 06:41 ┃ ┃ ┗[ochi@c... ] 1496 2006-08-10 07:02 ┃ ┃ ┗[ochi@c... ] 1497 2006-08-10 07:24 ┃ ┃ ┗[skymap_sora@y... ] 1498 2006-08-10 07:35 ┃ ┃ ┗[ochi@c... ] 1499 2006-08-10 07:51 ┃ ┃ ┣[skymap_sora@y... ] 1501 2006-08-10 08:01 ┃ ┃ ┃┗[ochi@c... ] 1502 2006-08-10 08:22 ┃ ┃ ┃ ┗[bsdmad@g... ] 1503 2006-08-10 08:41 ┃ ┃ ┃ ┗[skymap_sora@y... ] 1500 2006-08-10 07:56 ┃ ┃ ┗[tyumityumi@g... ] 1504 2006-08-10 09:06 ┃ ┗[yuui.tanaka@n... ] 1505 2006-08-10 09:18 ┃ ┣[ochi@c... ] 1506 2006-08-10 09:41 ┃ ┃┗[yuui.tanaka@n... ] 1507 2006-08-10 09:54 ┃ ┗[skymap_sora@y... ] 1485 2006-08-10 03:51 ┗[bsdmad@g... ] 1488 2006-08-10 04:15 ┗[skymap_sora@y... ]