diff --git a/framework/core/src/Database/AbstractMigration.php b/framework/core/src/Database/AbstractMigration.php deleted file mode 100644 index 867f7718d..000000000 --- a/framework/core/src/Database/AbstractMigration.php +++ /dev/null @@ -1,47 +0,0 @@ - - * - * For the full copyright and license information, please view the LICENSE - * file that was distributed with this source code. - */ - -namespace Flarum\Database; - -use Flarum\Settings\SettingsRepositoryInterface; -use Illuminate\Database\Schema\Builder; - -abstract class AbstractMigration -{ - /** - * @var Builder - */ - protected $schema; - - /** - * @var SettingsRepositoryInterface - */ - protected $settings; - - /** - * @param Builder $schema - * @param SettingsRepositoryInterface $settings - */ - public function __construct(Builder $schema, SettingsRepositoryInterface $settings) - { - $this->schema = $schema; - $this->settings = $settings; - } - - /** - * Run the migrations. - */ - abstract public function up(); - - /** - * Reverse the migrations. - */ - abstract public function down(); -}