Integer Question - Does Limit Value Make Sense

Поиск
Список
Период
Сортировка
От
Тема Integer Question - Does Limit Value Make Sense
Дата
Msg-id 480403.72458.qm@web33315.mail.mud.yahoo.com
обсуждение исходный текст
Ответы Re: Integer Question - Does Limit Value Make Sense  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: Integer Question - Does Limit Value Make Sense  (Richard Broersma Jr <rabroersma@yahoo.com>)
Список pgsql-novice
hi all,

i'm trying to work my through Agile Webdev with Rails.
 unfortunately (for me, anyway!), they went with mysql
as their base db.

i'm trying to work through the code on my own using
pgsql.

i ran into a problem in their migration script (update
db script).

they use code as follows:

add_column :products, :price, :decimal, :precision =>
8, :scale => 2, :default => 0

you can get the gist of what they are doing with the
code.

i installed a plugin that let's me use integers to
handle the money portion, but this didn't work:

add_column :products, :price_in_cents, :integer,
:limit => 10, :default => 0, :null => false

due the following error:

PGError: ERROR:  syntax error at or near "(" at
character 48
: ALTER TABLE products ADD price_in_cents integer(10)

it looks to me like it choked on the format
"integer(10)" part.

is limit a mysql specific issue for integer?  it was
suggested on irc, but i think the guy is used to
mysql.

tia...




____________________________________________________________________________________
Do you Yahoo!?
Everyone is raving about the all-new Yahoo! Mail beta.
http://new.mail.yahoo.com

В списке pgsql-novice по дате отправления:

Предыдущее
От: Richard Broersma Jr
Дата:
Сообщение: Re: Data (Table) Structure Question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Integer Question - Does Limit Value Make Sense