1 | <?php |
||
6 | class CreateSofaRevisionsTable extends Migration |
||
7 | { |
||
8 | /** |
||
9 | * Revisions table. |
||
10 | * |
||
11 | * @var string |
||
12 | */ |
||
13 | protected $table; |
||
14 | |||
15 | public function __construct() |
||
19 | |||
20 | /** |
||
21 | * Run the migrations. |
||
22 | * |
||
23 | * @return void |
||
24 | */ |
||
25 | public function up() |
||
43 | |||
44 | |||
45 | /** |
||
46 | * Reverse the migrations. |
||
47 | * |
||
48 | * @return void |
||
49 | */ |
||
50 | public function down() |
||
54 | } |
||
55 |