1 | <?php |
||
14 | class DropColumn extends TableOperation |
||
15 | { |
||
16 | /** |
||
17 | * Column name. |
||
18 | * |
||
19 | * @var string |
||
20 | */ |
||
21 | private $name = ''; |
||
22 | |||
23 | /** |
||
24 | * @param string|null $database |
||
25 | * @param string $table |
||
26 | * @param string $name |
||
27 | */ |
||
28 | public function __construct($database, string $table, string $name) |
||
34 | |||
35 | /** |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | public function execute(CapsuleInterface $capsule) |
||
51 | } |