| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | * (c) overtrue <[email protected]> |
||
| 8 | * This source file is subject to the MIT license that is bundled. |
||
| 9 | */ |
||
| 10 | |||
| 11 | use Illuminate\Database\Migrations\Migration; |
||
| 12 | use Illuminate\Database\Schema\Blueprint; |
||
| 13 | use Illuminate\Support\Facades\Schema; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * Class AddDeletedAtToVersions |
||
| 17 | * @author 安正超 - overtrue |
||
| 18 | * @github https://github.com/overtrue |
||
| 19 | */ |
||
| 20 | class AddDeletedAtToVersions extends Migration |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Run the migrations. |
||
| 24 | * |
||
| 25 | * @return void |
||
| 26 | */ |
||
| 27 | public function up(): void |
||
| 28 | { |
||
| 29 | Schema::table('versions', static function (Blueprint $table) { |
||
| 46 |