Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php defined('SYSPATH') OR die('No direct script access.'); |
||
14 | public static function initialize(Jam_Meta $meta) |
||
15 | { |
||
16 | parent::initialize($meta); |
||
17 | |||
18 | $meta |
||
19 | ->table('purchase_items') |
||
20 | ->fields(array( |
||
21 | 'is_payable' => Jam::field('boolean', array( |
||
22 | 'default' => TRUE |
||
23 | )), |
||
24 | 'is_discount' => Jam::field('boolean', array( |
||
25 | 'default' => TRUE |
||
26 | )), |
||
27 | )); |
||
28 | } |
||
29 | |||
36 |