1 | <?php |
||
7 | class Comment |
||
8 | { |
||
9 | /** |
||
10 | * @var \Illuminate\Database\Connection |
||
11 | */ |
||
12 | protected $connection; |
||
13 | |||
14 | /** |
||
15 | * @param Connection $connection |
||
16 | */ |
||
17 | public function __construct(Connection $connection) |
||
21 | |||
22 | /** |
||
23 | * Set table and column comments. |
||
24 | * |
||
25 | * @param \Yajra\Oci8\Schema\OracleBlueprint $blueprint |
||
26 | */ |
||
27 | public function setComments(OracleBlueprint $blueprint) |
||
41 | |||
42 | /** |
||
43 | * Set column comment. |
||
44 | * |
||
45 | * @param string $table |
||
46 | * @param array $columns |
||
47 | */ |
||
48 | private function commentColumns($table, $columns) |
||
58 | } |
||
59 |