Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

Integer Question - Does Limit Value Make Sense



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



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group