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) |
||
50 | |||
51 | /** |
||
52 | * Run the comment on column statement |
||
53 | * |
||
54 | * @param string $table |
||
55 | * @param string $column |
||
56 | * @param string $comment |
||
57 | */ |
||
58 | private function commentColumn($table, $column, $comment) |
||
62 | } |
||
63 |