for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanesoft\Blog\Bases;
use Arcanedev\Support\Bases\Migration as BaseMigration;
/**
* Class Migration
*
* @package Arcanesoft\Blog\Bases
* @author ARCANEDEV <[email protected]>
*/
abstract class Migration extends BaseMigration
{
/* ------------------------------------------------------------------------------------------------
| Constructor
| ------------------------------------------------------------------------------------------------
* Make a migration instance.
public function __construct()
$this->connection = config('arcanesoft.blog.database.connection', null);
}
| Getters & Setters
* Set the table name.
* @param string $table
* @return self
public function setTable($table)
$this->table = $table;
return $this;