Added documentation for controlling precision for decimal and float. ghpr/applied/as_2e7c645c
Robert Stone [Sat, 27 Dec 2014 19:19:10 +0000 (13:19 -0600)]
In DBIx::Class::ResultSource
  Added pod outlining that an ArrayRef can be passed as the argument to
  size in order to control precision.

lib/DBIx/Class/ResultSource.pm

index fea6327..70e0b11 100644 (file)
@@ -211,6 +211,12 @@ The length of your column, if it is a column type that can have a size
 restriction. This is currently only used to create tables from your
 schema, see L<DBIx::Class::Schema/deploy>.
 
+   { size => [ 9, 6 ] }
+
+For decimal or float values you can specify an ArrayRef in order to
+control precision, assuming your database's
+L<SQL::Translator::Producer> supports it.
+
 =item is_nullable
 
    { is_nullable => 1 }