static::
assertNull($migrations[1
]['update_destructive'
]);
} public function testNoDestructiveIfNoNoneDestructive(): void
{ $migrations =
$this->
getMigrations();
static::
assertNull($migrations[0
]['update'
]);
static::
assertNull($migrations[0
]['update_destructive'
]);
static::
assertNull($migrations[1
]['update'
]);
static::
assertNull($migrations[1
]['update_destructive'
]);
$this->validMigrationCollection->
migrateDestructiveInPlace();
$migrations =
$this->
getMigrations();
static::
assertNull($migrations[0
]['update'
]);
static::
assertNull($migrations[0
]['update_destructive'
]);
static::
assertNull($migrations[1
]['update'
]);
static::
assertNull($migrations[1
]['update_destructive'
]);
} public function testDestructiveIfOneNoneDestructive(): void
{ $migrations =
$this->
getMigrations();