/framework/core/db/DbField.php
http://zoop.googlecode.com/ · PHP · 13 lines · 11 code · 1 blank · 1 comment · 0 complexity · ea17df557a03cd1456b582abe637c3fc MD5 · raw file
- <?php
- // change this to DbColumn
- class DbField
- {
- public $name;
- public $type;
-
- function __construct($info)
- {
- $this->name = $info['name'];
- $this->type = $info['type'];
- }
- }