| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function requireField() { |
||
| 14 | $parts = array( |
||
| 15 | 'datatype' => 'bigint', |
||
| 16 | 'precision' => 8, |
||
| 17 | 'null' => 'not null', |
||
| 18 | 'default' => $this->defaultVal, |
||
| 19 | 'arrayValue' => $this->arrayValue |
||
| 20 | ); |
||
| 21 | |||
| 22 | $values = array('type' => 'bigint', 'parts' => $parts); |
||
| 23 | DB::require_field($this->tableName, $this->name, $values); |
||
| 24 | } |
||
| 25 | } |
||
| 26 |