increments('id'); $table->unsignedInteger('account_id'); $table->string('name'); $table->string('website')->nullable(); $table->integer('number_of_employees')->nullable(); $table->timestamps(); $table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade'); }); } }