id(); $table->boolean('enable')->default(true); $table->string('name'); $table->string('password'); $table->mediumText('cookies')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('accounts'); } };