Skip to content

Commit 9514258

Browse files
tiagofgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 4d9677e commit 9514258

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/Support/2000_01_01_000000_create_permission_tables.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

3-
use Illuminate\Support\Facades\Schema;
4-
use Illuminate\Database\Schema\Blueprint;
53
use Illuminate\Database\Migrations\Migration;
4+
use Illuminate\Database\Schema\Blueprint;
5+
use Illuminate\Support\Facades\Schema;
66

77
return new class extends Migration
88
{
@@ -25,7 +25,7 @@ public function up(): void
2525
}
2626

2727
Schema::create($tableNames['permissions'], function (Blueprint $table) {
28-
//$table->engine('InnoDB');
28+
// $table->engine('InnoDB');
2929
$table->bigIncrements('id'); // permission id
3030
$table->string('name'); // For MyISAM use string('name', 225); // (or 166 for InnoDB with Redundant/Compact row format)
3131
$table->string('guard_name'); // For MyISAM use string('guard_name', 25);
@@ -35,7 +35,7 @@ public function up(): void
3535
});
3636

3737
Schema::create($tableNames['roles'], function (Blueprint $table) use ($teams, $columnNames) {
38-
//$table->engine('InnoDB');
38+
// $table->engine('InnoDB');
3939
$table->bigIncrements('id'); // role id
4040
if ($teams || config('permission.testing')) { // permission.testing is a fix for sqlite testing
4141
$table->unsignedBigInteger($columnNames['team_foreign_key'])->nullable();

0 commit comments

Comments
 (0)