/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Database/Migrations/MigrationResult.php
10 строк
146 B
Dan Matthews
Add an optional `shouldRun` method to migrations. (#55011)
23 мар 2025, 02:49
Не верифицирован
23 мар 2025, 02:49
b3dc56c
Код
Авторство
О чём код?
<?php namespace Illuminate\Database\Migrations; enum MigrationResult: int { case Success = 1; case Failure = 2; case Skipped = 3; }