1 | <?php namespace Arcanesoft\Blog\Bases; |
||
11 | abstract class Migration extends BaseMigration |
||
12 | { |
||
13 | /* ------------------------------------------------------------------------------------------------ |
||
14 | | Constructor |
||
15 | | ------------------------------------------------------------------------------------------------ |
||
16 | */ |
||
17 | /** |
||
18 | * Make a migration instance. |
||
19 | */ |
||
20 | public function __construct() |
||
24 | |||
25 | /* ------------------------------------------------------------------------------------------------ |
||
26 | | Getters & Setters |
||
27 | | ------------------------------------------------------------------------------------------------ |
||
28 | */ |
||
29 | /** |
||
30 | * Set the table name. |
||
31 | * |
||
32 | * @param string $table |
||
33 | * |
||
34 | * @return self |
||
35 | */ |
||
36 | public function setTable($table) |
||
42 | } |
||
43 |