mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-03 15:02:34 +00:00
Add phpstan level 7(#544)
This commit is contained in:
@ -8,14 +8,14 @@
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('servers', function (Blueprint $table) {
|
||||
Schema::table('servers', function (Blueprint $table): void {
|
||||
$table->unsignedBigInteger('project_id')->nullable()->after('id');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('servers', function (Blueprint $table) {
|
||||
Schema::table('servers', function (Blueprint $table): void {
|
||||
$table->dropColumn('project_id');
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user