File Manager Lite
Dir:
/home/codewavebd/public_html/vendor/laravel/framework/src/Illuminate/Database/Migrations
Upload
[..]
Migration.php (695 B)
Edit
Rename
Del
Migrator.php (23.84 KB)
Edit
Rename
Del
stubs/
Rename
Del
Edit: Migration.php
<?php namespace Illuminate\Database\Migrations; abstract class Migration { /** * The name of the database connection to use. * * @var string|null */ protected $connection; /** * Enables, if supported, wrapping the migration within a transaction. * * @var bool */ public $withinTransaction = true; /** * Get the migration connection name. * * @return string|null */ public function getConnection() { return $this->connection; } /** * Determine if this migration should run. * * @return bool */ public function shouldRun(): bool { return true; } }
Simpan