In Postgres I can create a table with big integer types:
create TABLE test(
id bigserial,
f1 bigint
);
Table "public.test"
Column | Type |
Modifiers
--------+--------
+---------------------------------------------------
id | bigint | not null default nextval
('test_id_seq'::regclass)
f1 | bigint |
Is there a parameter for property that forces "big" when defining a
table in Data-Mapper?
I know those are hardware dependent, but our hardware and databases
support 'em and having the added ranges would be nice.
Thanks.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"DataMapper" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/datamapper?hl=en
-~----------~----~----~----~------~----~------~--~---