id(); $table->string('account'); $table->string('description')->nullable(); $table->foreignId('account_type_id')->constrained(); $table->string('normal_balance')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('accounts'); } };