Advanced Space Shooter

I took it upon myself to go ahead and attempt to create and finish the rest of the space shooter without the tutorial. I have almost everything ready except for one small problem. The enemy ships will spawn in backwards, and I can’t figure out how to modify the y rotation angle of the quaternian. Below is the instantiate code for the Enemy ship.

Enemy Spawn

You are spawning it in at it Quaternion.identity
This just spawns it in with no rotation, it just uses the objects parent axis.
If your ships mesh is a child in the prefab, you can simply rotate it 180 degrees and resave the prefab. However if the ships mesh is the parent object in the prefab, youll have to do a little fiddling.
So,
Make an empty game object at 0,0,0
Name it ship or whatever.
take your current ship prefab, and make it a child under this gameobject. Then rotate the ship (not the parent gameobject) 180 degrees. Then resave this as your new ship prefab. Whatever rotation you have the prefab is how its going to spawn in. So make sure your ship prefab is facing downward with a rotation value of 0,0,0 and you should be good.