Pluf Framework

Pluf Framework Commit Details


Date:2008-11-15 05:10:13 (16 years 5 months ago)
Author:Loic d'Anterroches
Branch:develop, master
Commit:374ee38cfa3aa334ccab0a9fb9d244c499ede948
Parents: 4b263d8d2ee436a06c91a7eb495e6a1b8d4534c4
Message:Added the blob type of field.

Changes:

File differences

src/Pluf/DB/Field/Compressed.php
3030
3131
3232
33
33
3434
3535
3636
 */
class Pluf_DB_Field_Compressed extends Pluf_DB_Field
{
    public $type = 'text';
    public $type = 'blob';
    function formField($def, $form_field='Pluf_Form_Field_Varchar')
    {
src/Pluf/DB/Schema/PostgreSQL.php
4949
5050
5151
52
5253
5354
5455
......
6768
6869
6970
71
7072
7173
7274
                             'email' => 'character varying',
                             'password' => 'character varying',
                             'float' => 'real',
                             'blob' => 'bytea',
                             );
    public $defaults = array(
                             'email' => "''",
                             'password' => "''",
                             'float' => 0.0,
                             'bytea' => '',
                             );
    private $con = null;

Archive Download the corresponding diff file

Branches

Tags

Number of commits:
Page rendered in 0.26435s using 13 queries.