Limits on Postgresql integers not respected

Hi,
I find that limits on postgresql integers are not respected in Rails
2.1.
For example setting

t.integer :employee_id, :limit => 8

resolves to a regular int in schema.rb:

t.integer :employee_id

Is there a quick monkey-patch to this?

Ram