pluf2

pluf2 Commit Details


Date:2008-11-22 08:51:25 (16 years 29 days ago)
Author:Loic d'Anterroches
Branch:master
Commit:c09aa45bdc399ec5b2f1a9ecec84221c31917dbe
Parents: 98d7f915624ebcd701ca98b4177052cc268c2b3c
Message:Added the blob database type.

Changes:

File differences

src/Pluf/DB/Schema/MySQL.php
4848
4949
5050
51
5152
5253
5354
......
6667
6768
6869
69
70
7071
7172
7273
'email' => 'varchar(150)',
'password' => 'varchar(150)',
'float' => 'numeric(%s, %s)',
'blob' => 'blob',
);
public $defaults = array(
'email' => "''",
'password' => "''",
'float' => 0.0,
'blob' => "''",
);
private $con = null;
src/Pluf/DB/Schema/SQLite.php
4949
5050
5151
52
5253
5354
5455
......
6768
6869
6970
70
71
7172
7273
7374
'email' => 'varchar(150)',
'password' => 'varchar(150)',
'float' => 'real',
'blob' => 'blob',
);
public $defaults = array(
'email' => "''",
'password' => "''",
'float' => 0.0,
'blob' => "''",
);
private $con = null;

Archive Download the corresponding diff file

Branches

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