* #84 - fix remembering user * #84 - ecs fix * #84 - fix * #84 - fix test * #84 - wip * #84 - add comment to observer * #84 - cr fix * Apply suggestions from code review Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl> * #84 - cr fix Co-authored-by: Krzysztof Rewak <krzysztof.rewak@blumilk.pl>
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
return new class() extends Migration {
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table("users", function (Blueprint $table): void {
|
||||
$table->string("password")->nullable();
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table("users", function (Blueprint $table): void {
|
||||
$table->dropColumn("password");
|
||||
});
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user