1 | <?php |
||
7 | class OracleBlueprint extends Blueprint |
||
8 | { |
||
9 | /** |
||
10 | * Table comment. |
||
11 | * |
||
12 | * @var string |
||
13 | */ |
||
14 | public $comment = null; |
||
15 | |||
16 | /** |
||
17 | * Column comments. |
||
18 | * |
||
19 | * @var array |
||
20 | */ |
||
21 | public $commentColumns = []; |
||
22 | |||
23 | /** |
||
24 | * Database prefix variable. |
||
25 | * |
||
26 | * @var string |
||
27 | */ |
||
28 | protected $prefix; |
||
29 | |||
30 | /** |
||
31 | * Set table prefix settings. |
||
32 | * |
||
33 | * @param string $prefix |
||
34 | */ |
||
35 | 24 | public function setTablePrefix($prefix = '') |
|
39 | |||
40 | /** |
||
41 | * Create a default index name for the table. |
||
42 | * |
||
43 | * @param string $type |
||
44 | * @param array $columns |
||
45 | * @return string |
||
46 | */ |
||
47 | 66 | protected function createIndexName($type, array $columns) |
|
79 | |||
80 | /** |
||
81 | * Create a new nvarchar2 column on the table. |
||
82 | * |
||
83 | * @param string $column |
||
84 | * @param int $length |
||
85 | * @return \Illuminate\Support\Fluent |
||
86 | */ |
||
87 | public function nvarchar2($column, $length = 255) |
||
91 | } |
||
92 |
If the size of the collection does not change during the iteration, it is generally a good practice to compute it beforehand, and not on each iteration: