run through pint
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class extends Migration
|
||||
{
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
use App\Repos\System\Settings\Location\RegionRepo;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
<?php
|
||||
|
||||
use App\Repos\System\Settings\Location\RegionRepo;
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
@@ -20,7 +19,7 @@ return new class extends Migration
|
||||
|
||||
$table->string('region', 2)->index();
|
||||
$table->foreignId('province_id')->constrained()->nullOnDelete();
|
||||
|
||||
|
||||
$table->string('billing_username')->nullable();
|
||||
$table->string('billing_password')->nullable();
|
||||
$table->timestamps();
|
||||
|
||||
@@ -30,7 +30,7 @@ class DatabaseSeeder extends Seeder
|
||||
'admin',
|
||||
'operator',
|
||||
'user',
|
||||
];
|
||||
];
|
||||
|
||||
foreach ($roles as $role) {
|
||||
Role::create(['name' => $role]);
|
||||
|
||||
Reference in New Issue
Block a user